15 lines
798 B
TypeScript
15 lines
798 B
TypeScript
|
import { NgModule} from '@angular/core';
|
||
|
import {FreeGuard} from '../../../openaireLibrary/login/freeGuard.guard';
|
||
|
import {PreviousRouteRecorder} from '../../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
||
|
import {IsRouteEnabled} from '../../../openaireLibrary/error/isRouteEnabled.guard';
|
||
|
import { MonitorSoftwareComponent } from './software.component';
|
||
|
import {SoftwareRoutingModule} from './software-routing.module';
|
||
|
import {ResultLandingModule} from "../../../openaireLibrary/landingPages/result/resultLanding.module";
|
||
|
@NgModule({
|
||
|
imports: [SoftwareRoutingModule, ResultLandingModule],
|
||
|
declarations:[MonitorSoftwareComponent],
|
||
|
providers:[FreeGuard, PreviousRouteRecorder, IsRouteEnabled],
|
||
|
exports:[MonitorSoftwareComponent]
|
||
|
})
|
||
|
export class LibSoftwareModule { }
|