Files
2026-05-11 19:38:54 -04: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"