t-convex-nextjs-saas/convex/http.ts

9 lines
195 B
TypeScript
Raw Permalink Normal View History

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