Files
sgy-web/api/index.js
2023-07-07 19:00:27 +08:00

43 lines
726 B
JavaScript

/*
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
// 授权登录
import auth from "./interfaces/auth"
// 图片上传
import file from "./interfaces/file"
// 皮肤健康知识
import health from "./interfaces/health"
// 首页
import index from "./interfaces/index"
// 产品
import mall from "./interfaces/mall"
// 订单
import order from "./interfaces/order"
// 体验官
import recruit from "./interfaces/recruit"
// 地址管理
import site from "./interfaces/site"
// 个人中心
import user from "./interfaces/user"
export default {
auth,
file,
health,
index,
mall,
order,
recruit,
site,
user
}