Files
sgy-web/api/index.js
2023-06-21 17:14:39 +08:00

39 lines
613 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 site from "./interfaces/site"
// 个人中心
import user from "./interfaces/user"
export default {
auth,
file,
health,
index,
mall,
order,
site,
user
}