(dir: string, key: string[])
| 61 | export class Service extends Context.Service<Service, Interface>()("@opencode/Storage") {} |
| 62 | |
| 63 | function file(dir: string, key: string[]) { |
| 64 | return path.join(dir, ...key) + ".json" |
| 65 | } |
| 66 | |
| 67 | function missing(err: unknown) { |
| 68 | if (!err || typeof err !== "object") return false |
no outgoing calls
no test coverage detected