Files
core2026/app/game-api/src/router/health/index.ts
T
2026-01-16 18:06:51 +00:00

10 lines
236 B
TypeScript

import { procedure, router } from '../../trpc.js';
export const healthRouter = router({
ping: procedure.query(({ ctx }) => ({
ok: true,
profile: ctx.profile.name,
now: new Date().toISOString(),
})),
});