Exploring Staggered Construction for API Request Handlers
I've had a thought regarding request handlers. would it be possible to provide an api for staggered construction of the handlers themselves?
This ofc can be done by using services that are the handlers and constructing them first ofc, but it feels patchy a bit
A different approach would be to allow to construct routes and routers in (or as) a
This would allow ergonomics for both users who prefer the "JIT" approach utilising
and those who prefer a "precompilation" or "layered" approach
This ofc can be done by using services that are the handlers and constructing them first ofc, but it feels patchy a bit
A different approach would be to allow to construct routes and routers in (or as) a
Layer.This would allow ergonomics for both users who prefer the "JIT" approach utilising
Effect.Tag (current)and those who prefer a "precompilation" or "layered" approach
