refactor(server): migrate host options

This commit is contained in:
Dax Raad 2026-07-20 21:21:36 -04:00
commit 407ac2d8aa
20 changed files with 149 additions and 94 deletions

View file

@ -57,8 +57,8 @@ export function layer(options?: Options) {
})
}
export const node = makeGlobalNode({
service: Service,
layer: layer({ path: ":memory:" }),
deps: [],
})
export function configured(options?: Options) {
return makeGlobalNode({ service: Service, layer: layer(options), deps: [] })
}
export const node = configured({ path: ":memory:" })