mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-09 02:49:57 -04:00
7 lines
235 B
TypeScript
7 lines
235 B
TypeScript
import { ServiceMap } from "effect"
|
|
import type { InstanceContext } from "@/project/instance"
|
|
|
|
export const InstanceRef = ServiceMap.Reference<InstanceContext | undefined>("~opencode/InstanceRef", {
|
|
defaultValue: () => undefined,
|
|
})
|