Files
timelapse-backend/api.js
Kerboul 4513af3aa0
All checks were successful
SSH Backend Deploy / ssh-deploy (push) Successful in 1m51s
feat(database): Implement DatabaseManager for managing database structure and initialization
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
2025-04-27 01:02:33 +02:00

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;