Files
LEAKHUB/convex/http.ts
2025-12-21 13:00:30 +00:00

9 lines
152 B
TypeScript

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