2018-06-16 18:05:46 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { OpenSlidesService } from './core/openslides.service';
|
2018-06-13 18:34:10 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: ['./app.component.css']
|
|
|
|
})
|
2018-06-16 18:05:46 +02:00
|
|
|
export class AppComponent implements OnInit {
|
|
|
|
constructor(private openSlides: OpenSlidesService) { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
this.openSlides.bootup();
|
|
|
|
}
|
2018-06-13 18:34:10 +02:00
|
|
|
}
|