chore: set new env

This commit is contained in:
2022-11-18 11:15:16 +07:00
parent 3f896d3824
commit c98e72d8d9
6 changed files with 90 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
import {http} from "../utils/http";
import { http } from "../utils/http";
import { http2 } from "../utils/http2";
import {botsRepository} from "../repository/bots";
import { orderRepository } from "../repository/order";
@@ -12,6 +13,6 @@ export class LockeyStore {
}
createPayment(body) {
return http.post(orderRepository.url.payment(), body);
return http2.post(orderRepository.url.payment(), body);
}
}