add services to index

This commit is contained in:
Kyle Spearrin 2018-02-28 21:03:23 -05:00
parent 6aef18ee7f
commit 52f3ea58d1
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
export { ApiService } from './api.service';
export { AppIdService } from './appId.service';
export { AuditService } from './audit.service';
export { AuthService } from './auth.service';
export { CipherService } from './cipher.service';
export { CollectionService } from './collection.service';
@ -12,6 +13,7 @@ export { LogService } from './log.service';
export { MessagingService } from './messaging.service';
export { PasswordGenerationService } from './passwordGeneration.service';
export { PlatformUtilsService } from './platformUtils.service';
export { SearchService } from './search.service';
export { SettingsService } from './settings.service';
export { StorageService } from './storage.service';
export { StateService } from './state.service';

View File

@ -1,5 +1,6 @@
export { ApiService } from './api.service';
export { AppIdService } from './appId.service';
export { AuditService } from './audit.service';
export { AuthService } from './auth.service';
export { CipherService } from './cipher.service';
export { CollectionService } from './collection.service';
@ -10,6 +11,7 @@ export { EnvironmentService } from './environment.service';
export { FolderService } from './folder.service';
export { LockService } from './lock.service';
export { PasswordGenerationService } from './passwordGeneration.service';
export { SearchService } from './search.service';
export { SettingsService } from './settings.service';
export { StateService } from './state.service';
export { SyncService } from './sync.service';