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