22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {NetworkCallComponent} from "./network-call.component";
|
|
import {CoreModule} from "../core/core.module";
|
|
import {HttpClientModule} from "@angular/common/http";
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
NetworkCallComponent
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
CoreModule,
|
|
HttpClientModule
|
|
],
|
|
exports: [
|
|
NetworkCallComponent
|
|
]
|
|
})
|
|
export class NetworkCallModule {
|
|
}
|