index.ts実装q

This commit is contained in:
rca 2024-06-18 02:22:51 +09:00
parent 1595a3a387
commit 0d9b224c29

View File

@ -0,0 +1,9 @@
import { Router } from 'express';
import taskRouter from './taskRouter';
const router = Router();
router.use('/task', taskRouter);
export default router;