Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/openstatusHQ/openstatus. ๐ซ Status page with uptime monitoring & API monitoring as code ๐ซ openstatus.dev
bun drizzle-orm monitoring monitoring-as-code nextjs observability on-call open-source shadcn-ui status-page statuspage synthetic-monitoring tinybird turso uptime uptime-checker uptime-monitor
Something went wrong. Try again.
411 B ยท 17 lines
TypeScript
123456789101112131415161718import type { AppRouter } from "@openstatus/api";import { createTRPCClient } from "@trpc/client";
import { endingLink, sentryLoggerLink } from "./shared";
export const api = createTRPCClient<AppRouter>({ links: [ sentryLoggerLink(), endingLink({ headers: { "x-trpc-source": "client", }, }), ],});
export { type RouterInputs, type RouterOutputs } from "@openstatus/api";