smartclient/src/app/app.module.ts

23 lines
503 B
TypeScript
Raw Normal View History

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
2018-06-22 15:41:48 +02:00
import { MqttclientService } from './mqttclient.service'
import { AppComponent } from './app.component';
2018-06-22 14:30:29 +02:00
import { LedindicatorComponent } from './ledindicator/ledindicator.component';
@NgModule({
declarations: [
2018-06-22 14:30:29 +02:00
AppComponent,
LedindicatorComponent
],
imports: [
BrowserModule
],
2018-06-22 15:41:48 +02:00
providers: [
MqttclientService
],
bootstrap: [AppComponent]
})
export class AppModule { }