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,
|
|
|
|
|
});
|