2018-09-20 13:03:51 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule as AngularCommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { CommonRoutingModule } from './common-routing.module';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component';
|
|
|
|
import { StartComponent } from './components/start/start.component';
|
|
|
|
import { LegalNoticeComponent } from './components/legal-notice/legal-notice.component';
|
2018-11-07 08:43:48 +01:00
|
|
|
import { SearchComponent } from './components/search/search.component';
|
2019-01-24 16:25:50 +01:00
|
|
|
import { CountdownRepositoryService } from './services/countdown-repository.service';
|
|
|
|
import { CountdownListComponent } from './components/countdown-list/countdown-list.component';
|
|
|
|
import { ProjectorMessageListComponent } from './components/projectormessage-list/projectormessage-list.component';
|
2018-09-20 13:03:51 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2019-01-24 16:25:50 +01:00
|
|
|
providers: [CountdownRepositoryService],
|
2018-09-20 13:03:51 +02:00
|
|
|
imports: [AngularCommonModule, CommonRoutingModule, SharedModule],
|
2019-01-24 16:25:50 +01:00
|
|
|
declarations: [
|
|
|
|
PrivacyPolicyComponent,
|
|
|
|
StartComponent,
|
|
|
|
LegalNoticeComponent,
|
|
|
|
SearchComponent,
|
|
|
|
CountdownListComponent,
|
|
|
|
ProjectorMessageListComponent
|
|
|
|
]
|
2018-09-20 13:03:51 +02:00
|
|
|
})
|
|
|
|
export class CommonModule {}
|