Project

General

Profile

1
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import{ SearchSoftwareRoutingModule} from './searchSoftware-routing.module';
6
import{OpenaireSearchSoftwareComponent} from './searchSoftware.component';
7
import {FreeGuard} from '../../openaireLibrary/login/freeGuard.guard';
8
import {PreviousRouteRecorder} from '../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
9
import {IsRouteEnabled} from '../../openaireLibrary/error/isRouteEnabled.guard'
10

    
11

    
12
import { SearchSoftwareModule} from '../../openaireLibrary/searchPages/simple/searchSoftware.module';
13

    
14
@NgModule({
15
  imports: [
16
    CommonModule, FormsModule, SearchSoftwareModule, SearchSoftwareRoutingModule
17
  ],
18
  declarations: [
19
    OpenaireSearchSoftwareComponent
20
   ],
21
  providers:[FreeGuard,PreviousRouteRecorder, IsRouteEnabled
22
    ],
23
  exports: [
24
    OpenaireSearchSoftwareComponent
25
     ]
26
})
27
export class LibSearchSoftwareModule { }
(21-21/21)