Files
Kilo-Org_kilocode/packages/opencode/src/server/httpapi-server.ts
T
2026-05-15 09:25:13 +02:00

10 lines
263 B
TypeScript

import { Context, Effect } from "effect"
export interface Interface {
readonly closeAll: Effect.Effect<void>
}
export class Service extends Context.Service<Service, Interface>()("@opencode/HttpApiServer") {}
export * as HttpApiServer from "./httpapi-server"