Working ServerDev

This commit is contained in:
Julien Valverdé
2024-07-12 00:36:45 +02:00
parent d9df1e15ae
commit a6a75ad875
2 changed files with 25 additions and 14 deletions

View File

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