refactor(session): extract reference prompt helpers (#28197)

This commit is contained in:
Shoubhit Dash
2026-05-18 22:32:18 +05:30
committed by GitHub
parent 3ab67f3280
commit dc0297f4ac
3 changed files with 70 additions and 87 deletions

View File

@@ -311,9 +311,4 @@ export const defaultLayer: Layer.Layer<Service> = layer.pipe(
Layer.provide(Git.defaultLayer),
)
export const ensure = Effect.fn("RepositoryCache.ensure")(function* (input: EnsureInput) {
const cache = yield* Service
return yield* cache.ensure(input)
})
export * as RepositoryCache from "./repository-cache"