2020-07-10 10:38:52 +02:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import {FreeGuard} from '../../../openaireLibrary/login/freeGuard.guard';
|
|
|
|
import {PreviousRouteRecorder} from '../../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
|
|
|
import { MonitorSoftwareComponent } from './software.component';
|
|
|
|
import {SoftwareRoutingModule} from './software-routing.module';
|
|
|
|
import {ResultLandingModule} from "../../../openaireLibrary/landingPages/result/resultLanding.module";
|
2020-07-14 15:02:51 +02:00
|
|
|
import {CommonModule} from "@angular/common";
|
2020-07-10 10:38:52 +02:00
|
|
|
@NgModule({
|
2020-07-14 15:02:51 +02:00
|
|
|
imports: [SoftwareRoutingModule, ResultLandingModule, CommonModule],
|
2020-07-10 10:38:52 +02:00
|
|
|
declarations:[MonitorSoftwareComponent],
|
2020-07-14 01:11:10 +02:00
|
|
|
providers:[FreeGuard, PreviousRouteRecorder],
|
2020-07-10 10:38:52 +02:00
|
|
|
exports:[MonitorSoftwareComponent]
|
|
|
|
})
|
|
|
|
export class LibSoftwareModule { }
|