mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 03:21:30 +01:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { GamesComponent } from './games/games.component';
|
|
import { GameDetailComponent } from './game-detail/game-detail.component';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { ConsoleComponent } from './console/console.component';
|
|
import { InputComponent } from './input/input.component';
|
|
import { ButtonComponent } from './button/button.component';
|
|
import { ServerComponent } from './server/server.component';
|
|
import { ServersListComponent } from './servers-list/servers-list.component';
|
|
import { GraphComponent } from './graph/graph.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
GamesComponent,
|
|
GameDetailComponent,
|
|
ConsoleComponent,
|
|
InputComponent,
|
|
ButtonComponent,
|
|
ServerComponent,
|
|
ServersListComponent,
|
|
GraphComponent,
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
HttpClientModule,
|
|
FormsModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|