mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-30 17:14:40 +08:00
9 lines
198 B
TypeScript
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"
|