pet/http/api/index.js

31 lines
557 B
JavaScript

// API接口统一导出文件
// 认证相关API
export * from './auth.js'
// 用户信息相关API
export * from './profile.js'
// 宠物相关API
export * from './pets.js'
// 领养相关API
export * from './adoption.js'
// 评价相关API
export * from './review.js'
// AI助手相关API
export * from './assistant.js'
// 通用API
export * from './common.js'
// 为了向后兼容,保留一些常用的别名导出
export {
wxPhoneLogin as phoneLogin,
userLogin as login,
userLogout as logout,
userRegister as register
} from './auth.js'