API Migrada

This commit is contained in:
2025-10-25 04:34:00 -06:00
commit 71d4a56a88
16 changed files with 2309 additions and 0 deletions

10
routes/index.js Normal file
View File

@@ -0,0 +1,10 @@
import { Router } from 'express';
const router = Router();
router.get('/', (req, res) => {
res.send({ RESPONSE: "This is the API's base route. This is a testing thing." });
console.log(`HTTP RESPONSE: ${res.statusCode}, ${res.statusMessage}`);
});
export default router;