OpenSlides/client/src/app/site/site.module.ts
FinnStutzenstein be9f98cfd0 App initialization
Used for internal apps as well as for plugins. The pluginpart is
currently missing, in fact that the main OpenSlides part is more
important. Apps can give their models and mainmenu entries.

Routes are not enabled, because the routes have to be static for webpack
to build the bundles. If we want to keep lazy loading, I see no
possibility to encapsulate the routes from the site-routing module.
2018-09-28 15:03:04 +02:00

14 lines
397 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from 'app/shared/shared.module';
import { SiteComponent } from './site.component';
import { SiteRoutingModule } from './site-routing.module';
@NgModule({
imports: [CommonModule, SharedModule, SiteRoutingModule],
declarations: [SiteComponent]
})
export class SiteModule {}