This commit is contained in:
Julien Valverdé
2024-07-15 05:12:27 +02:00
parent f4eeb66459
commit 0be4e0d8ce

View File

@@ -8,11 +8,11 @@ type TServices =
export interface Services extends TServices {}
export module Services {
export const Live = Layer.mergeAll(
export const Live: Layer.Layer<Services, never, never> = Layer.mergeAll(
TodoRepository.Live
) satisfies Layer.Layer<Services, never, never>
)
export const Dev = Layer.mergeAll(
export const Dev: Layer.Layer<Services, never, never> = Layer.mergeAll(
TodoRepository.Live
) satisfies Layer.Layer<Services, never, never>
)
}