import Category from "../schemas/Category.js"; const getCategory = async (req, res) => { try { const category = await Category.find({}, {_id: 0}) res.json(category) } catch (error) { console.log(error) res.status(500).send('카테고리 검색 실패') } } export default { getCategory }