Files
sgse-app/packages/backend/convex/http.ts
2025-11-07 10:33:48 -03:00

9 lines
203 B
TypeScript

import { httpRouter } from "convex/server";
import { authComponent, createAuth } from "./auth";
const http = httpRouter();
authComponent.registerRoutes(http, createAuth);
export default http;