Implement initial API structure with Docker support, CI/CD workflows, and authentication features
Despliegue Automático / desplegar (push) Failing after 1m29s

This commit is contained in:
2026-05-18 18:43:33 +02:00
commit 9d117a5887
23 changed files with 1091 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
const express = require('express');
const router = express.Router();
const syncController = require('../controllers/syncController');
router.post('/sync', syncController.sync);
module.exports = router;