bots-frontend/store/lockey.js
2022-11-11 17:03:31 +07:00

13 lines
278 B
JavaScript

import {http} from "../utils/http";
import {botsRepository} from "../repository/bots";
export class LockeyStore {
constructor(context) {
this.context = context
}
createOrder(body) {
return http.post(botsRepository.url.createOrder(), body);
}
}