const make = () => Effect.gen(function* () {
const doSomething = function doSomething() { return Effect.gen(function* (_) {}); }
return {doSomething}
})
const live = () => Layer.effect(Service, make());
const make = () => Effect.gen(function* () {
const doSomething = function doSomething() { return Effect.gen(function* (_) {}); }
return {doSomething}
})
const live = () => Layer.effect(Service, make());