You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
161 B

/*
* 接口统一集成模块
*/
import * as file from './file'
import * as basic from './basic'
// 默认全部导出
export const api = {
basic,
file
}