import express from "express";
import makersService from "~/services/makers";

// eslint-disable-next-line new-cap
const router = express.Router();

router.get("/", async function (req, res, next) {
	try {
		res.json(await makersService.getListByCategory(req.query.page));
	} catch (err) {
		next(err);
	}
});

export default router;
