WEB/src/servers/api/index.ts

39 lines
872 B
TypeScript

// @ts-ignore
/* eslint-disable */
// API 更新时间:
// API 唯一标识:
import * as area from './area';
import * as category from './category';
import * as customer from './customer';
import * as dict from './dict';
import * as locales from './locales';
import * as logistics from './logistics';
import * as order from './order';
import * as product from './product';
import * as site from './site';
import * as siteApi from './siteApi';
import * as statistics from './statistics';
import * as stock from './stock';
import * as subscription from './subscription';
import * as template from './template';
import * as user from './user';
import * as webhook from './webhook';
export default {
area,
category,
customer,
dict,
locales,
logistics,
order,
product,
siteApi,
site,
statistics,
stock,
subscription,
template,
user,
webhook,
};