Initial commit

This commit is contained in:
Mohit Nagar
2025-10-02 18:23:29 +05:30
committed by GitHub
commit 02401a3e9d
59 changed files with 11270 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Router } from 'express';
import TaskListController from '@src/controllers/taskList.controller';
const router = Router();
router.get('/', TaskListController.getAll);
router.get('/:id', TaskListController.getById);
router.post('/', TaskListController.create);
router.put('/:id', TaskListController.update);
router.delete('/:id', TaskListController.remove);
export default router;