const fooEffect = pipe(
Effect.andThen(() => Effect.sleep('1 seconds')),
Effect.andThen(() => Effect.succeed('foo')),
Effect.uninterruptible,
);
const fooEffect = pipe(
Effect.andThen(() => Effect.sleep('1 seconds')),
Effect.andThen(() => Effect.succeed('foo')),
Effect.uninterruptible,
);