Integrating Effect into a Fastify+TRPC+Drizzle Backend
I have a fastify+trpc+drizzle backend and I've been working on adopting effect in my codebase. I wrote some effects that make third-party api requests and parse the response with effect schema and that is all working fine and well. But I want to integrate effect into the core of my application, so that I benefit from DI, tracing etc. What is the recommended way to go about this? do you "effectualize" fastify and trpc? or do I drop these libraries entirely in favor of an effect equivalent like effect-rpc? on the frontend I am using tanstack query, and a requirement would be that the integration between frontend and backend is as seamless as it is currently with trpc and tanstack query
