33 lines
639 B
JavaScript
33 lines
639 B
JavaScript
|
|
/*
|
|
* 接口路由
|
|
*/
|
|
|
|
import publics from "./interfaces/public"
|
|
import auth from "./interfaces/auth"
|
|
import file from "./interfaces/file"
|
|
import user from "./interfaces/user"
|
|
import video from "./interfaces/video"
|
|
import card from "./interfaces/card"
|
|
import mall from "./interfaces/mall"
|
|
import order from "./interfaces/order"
|
|
import company from "./interfaces/company"
|
|
import companyModule from "./interfaces/home"
|
|
import ticket from "./interfaces/ticket"
|
|
import address from "./interfaces/address"
|
|
|
|
export default{
|
|
publics,
|
|
auth,
|
|
file,
|
|
user,
|
|
video,
|
|
card,
|
|
mall,
|
|
order,
|
|
company,
|
|
companyModule,
|
|
ticket,
|
|
address
|
|
}
|