2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
|
|
|
|
|
|
import { SiteComponent } from './site.component';
|
2018-09-20 13:03:51 +02:00
|
|
|
import { SiteRoutingModule } from './site-routing.module';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2018-08-28 13:54:25 +02:00
|
|
|
imports: [CommonModule, SharedModule, SiteRoutingModule],
|
2018-09-20 13:03:51 +02:00
|
|
|
declarations: [SiteComponent]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class SiteModule {}
|