Recovering from a Failure in Effect.gen
Hey guys, how can I recover a failure of an
Effect.gen? ExampleEffect.genconst program = Effect.gen(function* (_) {
...
}).pipe(Effect.catchTag("SomeError", () => {
// do something and restart the program
}))