refactor(client): split package into promise and effect entrypoints

This commit is contained in:
Dax Raad
2026-07-03 01:46:21 -04:00
parent 0087dd56d9
commit af5eabcb26
46 changed files with 4496 additions and 1617 deletions
@@ -0,0 +1,5 @@
import { Schema } from "effect"
export class ClientError extends Schema.TaggedErrorClass<ClientError>()("ClientError", {
cause: Schema.Defect(),
}) {}