Difference between `FiberSet.makeRuntime` and `Effect.runtime` in TypeScript Yield Statements
I am revising some of the stuff from the Effect advanced workshop. Can anyone remind me the difference between these two:
and
and
const runFork = yield* _(FiberSet.makeRuntime<TodoRepository>()) const runtime = yield* _(Effect.runtime<TodoRepository>())
const runFork = Runtime.runFork(runtime)