const express = require("express"); const { createCategory, getCategories, updateCategory, deleteCategory, } = require("../controllers/categoryController"); const router = express.Router(); router.post("/", createCategory); // Create a new category router.get("/", getCategories); // Get all categories router.put("/:id", updateCategory); // Update a category by ID router.delete("/:id", deleteCategory); // Delete a category by ID module.exports = router;