Effect CommunityEC
Effect Community3y ago
25 replies
Sadra

Alternative to using `Effect.unit` at the start

what can i do insted of
Effect.unit
at the start ?
const worker = Effect.unit.pipe(
  Effect.tap(() => Console.log(Date.now())),
  Effect.delay(5000),
  Effect.forever,
  Effect.runPromise,
);
Was this page helpful?