/** * Test Routes */ import { Router } from 'express'; import * as TestController from '../../controllers/test.controller'; const routes = new Router(); /** * CRUD */ routes.get('/db', TestController.getDb); export default routes; /** * @swagger * tags: * name: Test * description: Test endpoint for docs */ /** * @swagger * /test: * get: * summary: Get test * description: Get information on the database as a test case for the docs * tags: [Test] */