14 lines
421 B
TypeScript
Raw Normal View History

2019-09-19 10:40:16 +09:00
import { AppService } from './app.service';
2019-09-19 18:22:13 +09:00
import { AppAuthenticationService } from './authentication.service';
import { AppLoaderService } from './loader.service';
import { AppNotificationService } from './notification.service';
2019-11-19 16:44:50 +09:00
import { AppNativeService } from './native.service';
2019-09-18 15:02:21 +09:00
2019-09-19 18:22:13 +09:00
export const SERVICES = [
AppService,
AppAuthenticationService,
AppLoaderService,
2019-11-19 16:44:50 +09:00
AppNotificationService,
AppNativeService
2019-09-19 18:22:13 +09:00
];