You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
541 B
TypeScript
26 lines
541 B
TypeScript
import AccountService from "./account.service";
|
|
import GlobalService from "./global.service";
|
|
import MenuService from "./menu.service";
|
|
import SettingService from "./setting.service";
|
|
import DictionaryService from "./dictionary.service";
|
|
|
|
import CalculateService from "./calculate.service";
|
|
|
|
export {
|
|
AccountService,
|
|
GlobalService,
|
|
MenuService,
|
|
SettingService,
|
|
DictionaryService,
|
|
CalculateService
|
|
};
|
|
|
|
export default {
|
|
AccountService,
|
|
GlobalService,
|
|
MenuService,
|
|
SettingService,
|
|
DictionaryService,
|
|
CalculateService
|
|
};
|