mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
30 lines
759 B
TypeScript
30 lines
759 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { HttpModule } from '@angular/http';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { ConfigService } from './shared/config.service';
|
|
import { DataService } from './shared/data.service';
|
|
import { HomeComponent } from './home/home.component';
|
|
import { routing } from './app.routes';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule,
|
|
HttpModule,
|
|
routing
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
HomeComponent
|
|
],
|
|
bootstrap: [AppComponent],
|
|
providers: [
|
|
ConfigService,
|
|
DataService
|
|
]
|
|
})
|
|
export class AppModule { }
|