zhongshujie
2025-08-08 401ed176c9f1bdd97ccdf827d9454b11a3891f79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 取消接口调用能力;
// 队列的必要性??
 
import resource from './api/resource.js'
import store from './api/store.js'
import identity from './api/identity.js'
import ugc from './api/ugc.js'
import app from './api/app.js'
import file from './api/file.js'
import job from './api/job.js'
import edu from './api/edu.js'
 
const WebMiddleGroundApi = {
  resource,
  store,
  identity,
  ugc,
  app,
  file,
  job,
  edu,
}
 
export default WebMiddleGroundApi