Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {CommonModule} from '@angular/common';
3
import {FormsModule} from '@angular/forms';
4
import {OpenaireSearchDataprovidersComponent} from './searchDataproviders.component';
5
import {SearchDataProvidersRoutingModule} from './searchDataProviders-routing.module';
6
import {PreviousRouteRecorder} from '../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
7
import {SearchDataprovidersServiceModule} from '../../openaireLibrary/connect/contentProviders/searchDataprovidersService.module';
8
import {NewSearchPageModule} from "../../openaireLibrary/searchPages/searchUtils/newSearchPage.module";
9

    
10
@NgModule({
11
  imports: [
12
    CommonModule, FormsModule,
13
    SearchDataProvidersRoutingModule, SearchDataprovidersServiceModule, NewSearchPageModule
14

    
15
  ],
16
  declarations: [
17
    OpenaireSearchDataprovidersComponent
18
  ],
19
  providers: [PreviousRouteRecorder],
20
  exports: [
21
    OpenaireSearchDataprovidersComponent
22
  ]
23
})
24
export class LibSearchDataProvidersModule {}
(2-2/12)