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