2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { SiteRoutingModule } from './site-routing.module';
|
|
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
|
|
|
|
import { SiteComponent } from './site.component';
|
|
|
|
import { StartComponent } from './start/start.component';
|
2018-08-14 12:55:45 +02:00
|
|
|
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
|
|
import { PrivacyPolicyComponent } from './privacy-policy/privacy-policy.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, SharedModule, SiteRoutingModule, TranslateModule.forChild()],
|
2018-08-14 12:55:45 +02:00
|
|
|
declarations: [SiteComponent, StartComponent, LegalNoticeComponent, PrivacyPolicyComponent]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class SiteModule {}
|