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;