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

14 lines
421 B
TypeScript

import { AppService } from './app.service';
import { AppAuthenticationService } from './authentication.service';
import { AppLoaderService } from './loader.service';
import { AppNotificationService } from './notification.service';
import { AppNativeService } from './native.service';
export const SERVICES = [
AppService,
AppAuthenticationService,
AppLoaderService,
AppNotificationService,
AppNativeService
];