8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
import { api } from "../utils/axiosClient";
|
|
|
|
|
|
export const PaymentRepository = {
|
|
makePayment: (data) => api.post(`/api/Payment/create-order`,data),
|
|
verifyPayment: (data) => api.post(`/api/Payment/verify-payment`,data),
|
|
};
|