refactor(core): remove session layer exports (#34623)

This commit is contained in:
James Long 2026-06-30 11:44:08 -04:00 committed by GitHub
commit 6387f955cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 11 additions and 35 deletions

View file

@ -8,7 +8,7 @@ import { SessionStore } from "../store"
import { SessionExecution } from "../execution"
/** Current-process routing for implicit-local Locations. Future remote placement belongs here. */
export const layer = Layer.effect(
const layer = Layer.effect(
SessionExecution.Service,
Effect.gen(function* () {
const store = yield* SessionStore.Service
@ -37,8 +37,6 @@ export const layer = Layer.effect(
}),
)
export const defaultLayer = layer.pipe(Layer.provide(SessionStore.defaultLayer))
export const node = makeGlobalNode({
service: SessionExecution.Service,
layer,