29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { Response, Router } from 'express';
|
|
import studentRouter from './students.js';
|
|
import teacherRouter from './teachers.js';
|
|
import classRouter from './classes.js';
|
|
import authRouter from './auth.js';
|
|
import themeRoutes from './themes.js';
|
|
import learningPathRoutes from './learning-paths.js';
|
|
import learningObjectRoutes from './learning-objects.js';
|
|
import { getLogger, Logger } from '../logging/initalize.js';
|
|
|
|
const router = Router();
|
|
const logger: Logger = getLogger();
|
|
|
|
router.get('/', (_, res: Response) => {
|
|
logger.debug('GET /');
|
|
res.json({
|
|
message: 'Hello Dwengo!🚀',
|
|
});
|
|
});
|
|
|
|
router.use('/student', studentRouter /* #swagger.tags = ['Student'] */);
|
|
router.use('/teacher', teacherRouter /* #swagger.tags = ['Teacher'] */);
|
|
router.use('/class', classRouter /* #swagger.tags = ['Class'] */);
|
|
router.use('/auth', authRouter /* #swagger.tags = ['Auth'] */);
|
|
router.use('/theme', themeRoutes /* #swagger.tags = ['Theme'] */);
|
|
router.use('/learningPath', learningPathRoutes /* #swagger.tags = ['Learning Path'] */);
|
|
router.use('/learningObject', learningObjectRoutes /* #swagger.tags = ['Learning Object'] */);
|
|
|
|
export default router;
|