mirror of
https://github.com/elder-plinius/LEAKHUB.git
synced 2026-02-12 16:52:53 +00:00
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
import { httpRouter } from "convex/server";
|
|
import { auth } from "./auth";
|
|
|
|
const http = httpRouter();
|
|
|
|
auth.addHttpRoutes(http);
|
|
|
|
export default http;
|