mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
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/services/config.service';
|
|
import { DataService } from './shared/services/data.service';
|
|
import { HomeComponent } from './home/home.component';
|
|
import { HighlightDirective } from './shared/directives/highlight.directive';
|
|
import { MatchComponent } from './shared/components/match.component';
|
|
import { ChatComponent } from './shared/components/chat.component';
|
|
import { routing } from './app.routes';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule,
|
|
HttpModule,
|
|
routing
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
ChatComponent,
|
|
HomeComponent,
|
|
HighlightDirective,
|
|
MatchComponent
|
|
],
|
|
bootstrap: [AppComponent],
|
|
providers: [
|
|
ConfigService,
|
|
DataService
|
|
]
|
|
})
|
|
export class AppModule { }
|