litian
3 天以前 8bb0a518dd4d9450370582c4d4ac3ae1dba1466b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 取消接口调用能力;
// 队列的必要性??
 
import store from "./api/store.js";
import identity from "./api/identity.js";
import app from "./api/app.js";
import edu from "./api/edu.js";
import file from './api/file.js'
import res from './api/resource.js'
 
const WebMiddleGroundApi = {
  store,
  identity,
  app,
  edu,
  file,
  res
};
 
export default WebMiddleGroundApi;