This commit is contained in:
2026-06-25 12:05:53 -05:00
commit b58e50e423
141 changed files with 28190 additions and 0 deletions

8
server/routes/bootstrapRoutes.js vendored Normal file
View File

@@ -0,0 +1,8 @@
import { Router } from 'express';
import { bootstrap, health } from '../controllers/bootstrapController.js';
import { requireAuth } from '../middleware/auth.js';
export const bootstrapRoutes = Router();
bootstrapRoutes.get('/health', health);
bootstrapRoutes.get('/bootstrap', requireAuth, bootstrap);