ルーターマウント追加

This commit is contained in:
ろむねこ 2024-07-03 14:48:05 +09:00
parent cfcd0dac57
commit 437ab04e48
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

12
src/routers/task/index.ts Normal file
View File

@ -0,0 +1,12 @@
import { Router } from 'express';
import { commonRouter, parentRouter } from './rootRouter';
const router = Router();
router.use('/', commonRouter);
router.use('/' , parentRouter);
export default router;