29 lines
808 B
TypeScript
29 lines
808 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
|
|
||
|
|
import { AppRoutingModule } from './app-routing.module';
|
||
|
|
import { AppComponent } from './app.component';
|
||
|
|
import { HttpClientModule } from '@angular/common/http';
|
||
|
|
import { LinksComponent } from './links/links.component';
|
||
|
|
import * as _ from 'lodash';
|
||
|
|
import { TasmotaControlComponent } from './tasmota-control/tasmota-control.component';
|
||
|
|
import { PiholeControlComponent } from './pihole-control/pihole-control.component';
|
||
|
|
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
declarations: [
|
||
|
|
AppComponent,
|
||
|
|
LinksComponent,
|
||
|
|
TasmotaControlComponent,
|
||
|
|
PiholeControlComponent
|
||
|
|
],
|
||
|
|
imports: [
|
||
|
|
BrowserModule,
|
||
|
|
AppRoutingModule,
|
||
|
|
HttpClientModule
|
||
|
|
],
|
||
|
|
providers: [],
|
||
|
|
bootstrap: [AppComponent]
|
||
|
|
})
|
||
|
|
export class AppModule { }
|