const handleGoogleWebhook = Effect.fn(function*() {
const runtime = Effect.runtime<never>()
setTimeout(() => {
Runtime.runPromise(runtime, handleSomething)
}, 5000)
...
})
const handleGoogleWebhook = Effect.fn(function*() {
const runtime = Effect.runtime<never>()
setTimeout(() => {
Runtime.runPromise(runtime, handleSomething)
}, 5000)
...
})