Files
finanzen/convex/http.ts
2026-06-15 11:33:23 +02:00

7 lines
150 B
TypeScript

import { httpRouter } from "convex/server";
import { auth } from "./auth";
const http = httpRouter();
auth.addHttpRoutes(http);
export default http;