18 lines
289 B
TypeScript
18 lines
289 B
TypeScript
|
import { NgModule, APP_INITIALIZER } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
|
||
|
import { SERVICES } from './service';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
],
|
||
|
declarations: [
|
||
|
],
|
||
|
providers: [
|
||
|
...SERVICES,
|
||
|
]
|
||
|
})
|
||
|
export class CommonsModule { }
|