import api from "@/lib/api"; import type { Category } from "@/types/content"; export const CategoryService = { async getAll(): Promise { const { data } = await api.get("/categories"); return data; }, async getOne(id: string): Promise { const { data } = await api.get(`/categories/${id}`); return data; }, };