9 lines
203 B
TypeScript
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;
|