feat(backend): add GET /api/materiels catalogue endpoint

This commit is contained in:
SaidSoighiri94
2026-06-19 10:39:27 +02:00
parent bc83308d05
commit bee21b9fd8
7 changed files with 113 additions and 9 deletions
@@ -0,0 +1,6 @@
import { Router } from 'express';
import { getCatalogue } from '../controllers/materiel.controller';
export const materielRoutes: Router = Router();
materielRoutes.get('/', getCatalogue);