1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| import { NgModule } from '@angular/core';
| import { IonicStorageModule } from '@ionic/storage';
| import { HttpClient } from './services/httpclient';
| import { Logger } from './services/logger';
| import { LoadingService } from './services/loading.service';
| import { MessageBox } from './services/messagebox';
| import { PlatformService } from './services/platform.service';
| import { AuthService } from './services/auth.service';
| import './rxjs-operators';
|
|
| @NgModule({
| imports: [
| IonicStorageModule.forRoot({ name: '_xg', driverOrder: ['sqlite', 'localstorage', 'websql', 'indexeddb'] })
| ],
| exports: [],
| declarations: [],
| providers: [
| Logger,
| LoadingService,
| HttpClient,
| MessageBox,
| PlatformService,
| AuthService
| ]
| })
| export class KlCoreModule { }
|
|