getCategory update

This commit is contained in:
Mann Patel
2025-04-18 22:09:04 -06:00
parent fd43001374
commit dee6e3ce10
5 changed files with 40 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
const express = require("express");
const { getAllCategory } = require("../controllers/category");
const router = express.Router();
router.get("/", getAllCategory);
module.exports = router;