refactor: remove remaining default layer aliases (#34660)

This commit is contained in:
James Long 2026-06-30 13:17:34 -04:00 committed by GitHub
commit 6636683323
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 10 deletions

View file

@ -25,7 +25,7 @@ const Handlers = Runtime.handlers(Commands, {
})
Runtime.run(Commands, Handlers, { version: "local" }).pipe(
Effect.provide(Daemon.defaultLayer),
Effect.provide(Daemon.layer),
Effect.provide(NodeServices.layer),
Effect.scoped,
NodeRuntime.runMain,

View file

@ -189,6 +189,4 @@ export const layer = Layer.effect(
}),
)
export const defaultLayer = layer
export * as Daemon from "./daemon"