const helloWorld = Effect.gen( function* () {
const app = yield* Express
const runtime = yield* Effect.runtime()
app.get(
'/',
(
_,
res
) => {
Effect.runSync(
Effect.gen( function* () {
// const Console = yield* ConsoleService
// yield* Console.warn( 'Ran hello world' )
return res.send( 'Hello World!' )
} )
)
}
)
} )
const helloWorld = Effect.gen( function* () {
const app = yield* Express
const runtime = yield* Effect.runtime()
app.get(
'/',
(
_,
res
) => {
Effect.runSync(
Effect.gen( function* () {
// const Console = yield* ConsoleService
// yield* Console.warn( 'Ran hello world' )
return res.send( 'Hello World!' )
} )
)
}
)
} )