2026-03-13 00:43:24 +00:00
|
|
|
import { Layer, ManagedRuntime } from "effect"
|
2026-03-10 16:53:47 +00:00
|
|
|
import { AccountService } from "@/account/service"
|
2026-03-13 00:43:24 +00:00
|
|
|
import { AuthService } from "@/auth/service"
|
2026-03-14 18:28:00 +00:00
|
|
|
import { PermissionService } from "@/permission/service"
|
2026-03-14 15:58:00 +00:00
|
|
|
import { QuestionService } from "@/question/service"
|
2026-03-10 16:53:47 +00:00
|
|
|
|
2026-03-14 15:58:00 +00:00
|
|
|
export const runtime = ManagedRuntime.make(
|
2026-03-14 18:28:00 +00:00
|
|
|
Layer.mergeAll(AccountService.defaultLayer, AuthService.defaultLayer, PermissionService.layer, QuestionService.layer),
|
2026-03-14 15:58:00 +00:00
|
|
|
)
|