mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-25 07:15:19 +00:00
10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
import { Layer, ManagedRuntime } from "effect"
|
|
import { memoMap } from "./run-service"
|
|
|
|
import { Format } from "@/format"
|
|
import { ShareNext } from "@/share/share-next"
|
|
|
|
export const BootstrapLayer = Layer.mergeAll(Format.defaultLayer, ShareNext.defaultLayer)
|
|
|
|
export const BootstrapRuntime = ManagedRuntime.make(BootstrapLayer, { memoMap })
|