lzh_front/src/api/index.js
2025-05-24 10:50:19 +08:00

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
}