import http from "../utils/http"; export const addProduct = (data: { name: string; price: number; description: string; image: string; }) => { return http({ url: "/product", method: "post", data, }); };