Move schema utilities into core (#26565)

This commit is contained in:
Dax 2026-05-09 15:51:09 -04:00 committed by GitHub
commit dcdbdb218f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
73 changed files with 125 additions and 125 deletions

View file

@ -10,8 +10,8 @@ import type { Proc } from "#pty"
import * as Log from "@opencode-ai/core/util/log"
import { PtyID } from "./schema"
import { Effect, Layer, Context, Schema, Types } from "effect"
import { zod } from "@/util/effect-zod"
import { NonNegativeInt, PositiveInt, withStatics } from "@/util/schema"
import { zod } from "@opencode-ai/core/effect-zod"
import { NonNegativeInt, PositiveInt, withStatics } from "@opencode-ai/core/schema"
const log = Log.create({ service: "pty" })