app.js 636 B

1234567891011121314151617181920212223
  1. "use strict";
  2. const sheep_request_index = require("../../request/index.js");
  3. const app = {
  4. //小程序直播
  5. mplive: {
  6. getRoomList: (ids) => sheep_request_index.request({
  7. url: "app/mplive/getRoomList",
  8. method: "GET",
  9. params: {
  10. ids: ids.join(",")
  11. }
  12. }),
  13. getMpLink: () => sheep_request_index.request({
  14. url: "app/mplive/getMpLink",
  15. method: "GET"
  16. })
  17. }
  18. };
  19. const __vite_glob_0_10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
  20. __proto__: null,
  21. default: app
  22. }, Symbol.toStringTag, { value: "Module" }));
  23. exports.__vite_glob_0_10 = __vite_glob_0_10;