import express from "express";

import categoryService from "~/services/item/categories";

// eslint-disable-next-line new-cap
const router = express.Router();

router.get("/", async function (req, res, next) {
	res.json(await categoryService.getList(req.query.category));
});

export default router;
