mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-16 09:33:24 +00:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { Context } from "effect"
|
|
|
|
export * as Instance from "./instance"
|
|
|
|
export type Ref = {
|
|
readonly directory: string
|
|
readonly workspaceID?: string
|
|
}
|
|
|
|
export class Service extends Context.Service<Service, Ref>()("@opencode/Instance") {}
|