refactor(effect): upgrade opencode to beta.46 context APIs (#21977)

This commit is contained in:
Kit Langton 2026-04-10 23:06:28 -04:00 committed by GitHub
commit 9581bf0670
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
75 changed files with 195 additions and 209 deletions

View file

@ -23,7 +23,7 @@ export namespace Foo {
readonly get: (id: FooID) => Effect.Effect<FooInfo, FooError>
}
export class Service extends ServiceMap.Service<Service, Interface>()("@opencode/Foo") {}
export class Service extends Context.Service<Service, Interface>()("@opencode/Foo") {}
export const layer = Layer.effect(
Service,