/
githubmirror
/
trpc
Обзор
Документация
Войти
/
githubmirror
/
trpc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/next-big-router/src/server/trpc.ts
8 строк
217 B
Alex / KATT
chore: cleanup big router tests (#5409)
28 янв 2024, 17:16
Не верифицирован
28 янв 2024, 17:16
68c96be
Код
Авторство
О чём код?
import { initTRPC } from '@trpc/server'; import type { Context } from './context'; export const t = initTRPC.context<Context>().create(); export const router = t.router; export const publicProcedure = t.procedure;