Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: #1
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import type { WebRpc } from "@website/common/webrpc"
|
|
import { Layer } from "effect"
|
|
import * as WebRpcTestLive from "./WebRpcTestLive"
|
|
|
|
|
|
export const WebRpcLive = Layer.mergeAll(
|
|
WebRpcTestLive.WebRpcTestLive,
|
|
) satisfies ReturnType<typeof WebRpc.toLayer>
|
|
|
|
export * as WebRpcTestLive from "./WebRpcTestLive"
|