next-ucap-messenger/projects/ucap-webmessenger-app/src/app/services/index.ts

12 lines
348 B
TypeScript
Raw Normal View History

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-09-18 06:02:21 +00:00
2019-09-19 09:22:13 +00:00
export const SERVICES = [
AppService,
AppAuthenticationService,
AppLoaderService,
AppNotificationService
];