Files
anomalyco_opencode/packages/opencode/src/project/bootstrap-service.ts
T

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"