From 246e6114745f02084581117638d58370d6be70a3 Mon Sep 17 00:00:00 2001 From: Konstantinos Triantafyllou Date: Mon, 23 Dec 2019 15:55:51 +0000 Subject: [PATCH] [Monitor Dashboard | Trunk]: Remove shared module, already exists at library git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-monitor-portal/trunk/monitor_dashboard@57946 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/shared/shared.module.ts | 45 --------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/app/shared/shared.module.ts diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts deleted file mode 100644 index f0ce0d2..0000000 --- a/src/app/shared/shared.module.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { NgModule, ModuleWithProviders } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { RouterModule } from '@angular/router'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; - - -const MODULES = [ - // Do NOT include UniversalModule, HttpModule, or JsonpModule here - CommonModule, - RouterModule, - FormsModule, - ReactiveFormsModule -]; - -const PIPES = [ - // put pipes here -]; - -const COMPONENTS = [ - // put shared components here -]; - - - -@NgModule({ - imports: [ - ...MODULES - ], - declarations: [ - ...PIPES, - ...COMPONENTS - ], - exports: [ - ...MODULES, - ...PIPES, - ...COMPONENTS - ] -}) -export class SharedModule { - static forRoot(): ModuleWithProviders { - return { - ngModule: SharedModule, - }; - } -}