Files
home/Projects/kompose/news/apps/backend/src/organization/router.ts

10 lines
286 B
TypeScript
Raw Normal View History

2025-10-08 10:35:48 +02:00
import { router } from "../trpc"
import { createOrganization, updateOrganization } from "./mutation"
import { getOrganizationById } from "./query"
export const organizationRouter = router({
create: createOrganization,
update: updateOrganization,
getById: getOrganizationById,
})