mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-17 12:42:17 +00:00
10 lines
244 B
TypeScript
10 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") {}
|