Composing Layers with Effect.Service vs Context.Tag
i'm trying to build my real full-stack effectful app with service layers. i'm a bit confused about composing layers. the documentation recommends using
Effect.Service and then using Effect.provideService(Service, implementation), but my intention was to provide a fully prototyped service before i began any actual implementation logic. Would you still recommend Effect.Service or should I instead use Context.Tag to create shape and then have a ConfigLive and ConfigTest service?