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.
22 lines
450 B
TypeScript
22 lines
450 B
TypeScript
3 years ago
|
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';
|
||
|
|
||
|
export {
|
||
|
AccountService,
|
||
|
GlobalService,
|
||
|
MenuService,
|
||
|
SettingService,
|
||
|
DictionaryService,
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
AccountService,
|
||
|
GlobalService,
|
||
|
MenuService,
|
||
|
SettingService,
|
||
|
DictionaryService,
|
||
|
};
|