闫增涛
2024-06-19 0d70f01c3553b6c33e5ee86f89f8d0fbd42825d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 取消接口调用能力;
// 队列的必要性??
 
import store from "./api/store.js";
import identity from "./api/identity.js";
import app from "./api/app.js";
import edu from "./api/edu.js";
 
const WebMiddleGroundApi = {
  store,
  identity,
  app,
  edu
};
 
export default WebMiddleGroundApi;