10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import { Context, Effect } from "effect"
|
|
|
|
export interface Interface {
|
|
readonly run: Effect.Effect<void>
|
|
}
|
|
|
|
export class Service extends Context.Service<Service, Interface>()("@opencode/InstanceBootstrap") {}
|
|
|
|
export * as InstanceBootstrap from "./bootstrap-service"
|