()
| 68 | Effect.gen(function* () { |
| 69 | let requests = 0; |
| 70 | const fetch: typeof globalThis.fetch = async () => { |
| 71 | requests += 1; |
| 72 | return Response.json({ flags: {} }); |
| 73 | }; |
| 74 | const configured = makeGoogleOAuthListing({ |
| 75 | projectKey: "key", |
| 76 | host: "https://flags.example.com", |