Refactoring

This commit is contained in:
Julien Valverdé
2024-07-04 21:26:16 +02:00
parent 7b578c657a
commit 5f15dedfbf
7 changed files with 36 additions and 33 deletions

View File

@@ -0,0 +1,9 @@
import { Layer } from "effect"
import { TodoRepositoryLive } from "./TodoRepository"
export const ServicesLive = Layer.mergeAll(
TodoRepositoryLive
)
export type Services = Layer.Layer.Success<typeof ServicesLive>