litian
2024-05-23 cc26637f18b8ed178420122d7335b3f89be92ada
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 取消接口调用能力;
// 队列的必要性??
 
import store from "./api/store.js";
import identity from "./api/identity.js";
import app from "./api/app.js";
 
const WebMiddleGroundApi = {
  store,
  identity,
  app,
};
 
export default WebMiddleGroundApi;