Files
2026-06-09 08:29:02 +02:00

9 lines
198 B
TypeScript

import { Effect, Layer } from "effect"
import { Auth } from "../../src/auth"
export const empty = Layer.mock(Auth.Service)({
all: () => Effect.succeed({}),
})
export * as AuthTest from "./auth"