7 lines
271 B
Plaintext
7 lines
271 B
Plaintext
import { z } from 'zod'
|
|
|
|
export const requestSchema = z.object({ /* approved contract */ })
|
|
export const responseSchema = z.object({ /* runtime trust boundary */ })
|
|
export type Request = z.infer<typeof requestSchema>
|
|
export type Response = z.infer<typeof responseSchema>
|