All checks were successful
SSH Backend Deploy / ssh-deploy (push) Successful in 1m51s
feat(routes): Add camera, image, measurement, project, and video routes with Swagger documentation feat(services): Create storageService and videoService for file management and video processing fix(errorHandler): Enhance error handling with standardized responses and database operation wrappers
11 lines
305 B
JavaScript
11 lines
305 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
|
|
// Importe toutes les routes depuis notre nouvelle structure
|
|
const apiRoutes = require('./src/routes');
|
|
|
|
// Utilise directement toutes les routes définies dans src/routes/index.js
|
|
router.use('/', apiRoutes);
|
|
|
|
module.exports = router;
|