1
0
forked from PGL/Clyde
Clyde/frontend/src/rest/payment.js

7 lines
138 B
JavaScript
Raw Normal View History

import {restPost} from "@/rest/restConsumer.js";
export async function postPayment(payment){
return restPost("/payment", payment)
}