20 lines
416 B
JavaScript
20 lines
416 B
JavaScript
// 所有接口统一暴露
|
|
|
|
import * as common from './common'
|
|
import * as parking from './parking'
|
|
import * as brand from './brand'
|
|
import * as car from './car'
|
|
import * as member from './member'
|
|
import * as comment from './comment'
|
|
import * as pact from './pact'
|
|
import * as userinfo from './userinfo'
|
|
export default {
|
|
common,
|
|
parking,
|
|
brand,
|
|
car,
|
|
member,
|
|
comment,
|
|
pact,
|
|
userinfo
|
|
} |