feat: add JWT authentication

This commit is contained in:
Cesar
2026-05-22 17:13:24 -06:00
parent 397c2ef3df
commit 45d6347d4c
15 changed files with 524 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
import { Router } from "express";
import { AuthRoutes } from "./auth/routes.js";
export class AppRoutes {
static get routes(): Router {
const router = Router();
router.use('/api/auth', AuthRoutes.routes);
return router;
}
}