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,
);