config.js 532 B

1234567891011121314151617
  1. "use strict";
  2. const sheep_request_index = require("../../request/index.js");
  3. const TradeConfigApi = {
  4. // 获得交易配置
  5. getTradeConfig: () => {
  6. return sheep_request_index.request({
  7. url: `/trade/config/get`,
  8. method: "GET"
  9. });
  10. }
  11. };
  12. const __vite_glob_0_35 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
  13. __proto__: null,
  14. default: TradeConfigApi
  15. }, Symbol.toStringTag, { value: "Module" }));
  16. exports.TradeConfigApi = TradeConfigApi;
  17. exports.__vite_glob_0_35 = __vite_glob_0_35;