This commit is contained in:
Julien Valverdé
2024-06-30 20:24:20 +02:00
parent af92b5717c
commit 85dd831dfb
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import { Context, Layer } from "effect"
import express from "express"
export class Express extends Context.Tag("Express")<Express, ReturnType<typeof express>>() {}
export const ExpressLive = Layer.sync(Express, () => express())