refactor: collapse command facade (#21981)

This commit is contained in:
Kit Langton
2026-04-10 23:52:12 -04:00
committed by GitHub
parent d84cc33742
commit 5e3dc80999
4 changed files with 13 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
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 })