12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
/* eslint-disable */
|
|
// API 更新时间:
|
|
// API 唯一标识:
|
|
import * as auth from "./auth";
|
|
import * as common from "./common";
|
|
import * as oauth from "./oauth";
|
|
export default {
|
|
auth,
|
|
oauth,
|
|
common,
|
|
};
|