export const connectionsRouter = createTRPCRouter({
list: protectedProcedure
.input(
z.object({
organizationSlug: z.string(),
}),
)
.query(async ({ ctx, input }) => {
throw new TRPCError({ code: "NOT_FOUND", message: "Not found" });
export const connectionsRouter = createTRPCRouter({
list: protectedProcedure
.input(
z.object({
organizationSlug: z.string(),
}),
)
.query(async ({ ctx, input }) => {
throw new TRPCError({ code: "NOT_FOUND", message: "Not found" });