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