Using TaskEither with Effect: Improving Code for Better Integration
Hello! I am still quite new to Effect and have been using fp-ts so far. Both I really like! Thanks for the great work!
Now I have the situation in which I wrote code with Effect and want to use a function from my lib that is returning a
. What would your suggested way of achieving that look like?
Now I have the situation in which I wrote code with Effect and want to use a function from my lib that is returning a
TaskEither<IngestError, Result>. I found a way to make an Effect<never, IngestError, Result> from it. But the code looks like it should be improved 