UNPKG

create-prpc-app

Version:

Create brand new pRPC app within seconds

11 lines (9 loc) 241 B
import { query$ } from '@prpc/solid' import { z } from 'zod' export const helloQuery = query$({ schema: z.object({ name: z.string() }), key: 'hello', queryFn: ({ payload }) => { return `server says hello: ${payload.name}` }, })