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

10 lines
287 B
TypeScript
Raw Normal View History

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