feat(backend): add GET /api/mes-emprunts endpoint

This commit is contained in:
SaidSoighiri94
2026-06-19 11:38:40 +02:00
parent bee21b9fd8
commit 20490a05c5
6 changed files with 55 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import { Router } from 'express';
import { getMesEmprunts } from '../controllers/emprunt.controller';
export const empruntRoutes: Router = Router();
empruntRoutes.get('/', getMesEmprunts);