Is it acceptable to have an `Effect<Stream<X>>` in a Service method?
I'm writing some Stream code, and I have a Service defined that has a method which returns a Stream. When I want to use that service, I have to yield it in order to be able to call that method. Is it fine to have an
Effect<Stream<X>>
Effect<Stream<X>>
? Or does that break the rule that you should never have an