Handling Service Provision in Express Endpoints with Effect
So I'm trying to do the express example from the website. I've got my effect working and generating the 
I have a layer which defines my logging service, which has been provided to the top-level runtime, because express endpoints are running on another fiber, I don't have that service provided. Just wondering what the correct way to handle this is?
I assume do an import of the logging service and do another
hello-world response. That part is fine I have a layer which defines my logging service, which has been provided to the top-level runtime, because express endpoints are running on another fiber, I don't have that service provided. Just wondering what the correct way to handle this is?
I assume do an import of the logging service and do another
Effect.provide, but wanted to check. I'm working in an extendable environment which doesn't necessarily know all the layers provided to the current runtime, is there a way to get the current runtime's services and pass it to this fork?