10 lines
263 B
TypeScript
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"
|