(config: CloudflareConfig)
| 47 | }); |
| 48 | |
| 49 | export const makeCloudflareHostConfig = (config: CloudflareConfig): Layer.Layer<HostConfig> => |
| 50 | Layer.succeed(HostConfig)({ |
| 51 | allowLocalNetwork: config.allowLocalNetwork, |
| 52 | webBaseUrl: config.webBaseUrl, |
| 53 | oauthCallbackPath: "/api/oauth/callback", |
| 54 | }); |
| 55 | |
| 56 | /** |
| 57 | * The five execution-stack seams the shared `makeExecutionStack` reads from, |
no outgoing calls
no test coverage detected