()
| 266 | Effect.succeed(ElicitationResponse.make({ action: "decline" })); |
| 267 | |
| 268 | const memoryProvider = (): CredentialProvider => { |
| 269 | const store = new Map<string, string>(); |
| 270 | return { |
| 271 | key: ProviderKey.make("memory"), |
| 272 | writable: true, |
| 273 | get: (id) => Effect.sync(() => store.get(String(id)) ?? null), |
| 274 | set: (id, value) => Effect.sync(() => void store.set(String(id), value)), |
| 275 | }; |
| 276 | }; |
| 277 | |
| 278 | const VERCEL = IntegrationSlug.make("vercel"); |
| 279 | const GITHUB = IntegrationSlug.make("github"); |
no test coverage detected