Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { ReusableComponentsModule } from '../../../shared/reusablecomponents/reusable-components.module';
4
import { DataService } from '../../../services/data.service';
5
import { DataHandlerService } from '../../../services/data-handler.service';
6
import { CountryOpenScienceRoutingModule } from './country-open-science-routing.module';
7
import { CountryOpenScienceComponent } from './country-open-science.component';
8

    
9
@NgModule ({
10
  imports: [
11
    CommonModule,
12
    CountryOpenScienceRoutingModule,
13
    ReusableComponentsModule,
14
  ],
15
  declarations: [
16
    CountryOpenScienceComponent
17
  ],
18
  providers: [
19
    DataService,
20
    DataHandlerService
21
  ],
22
})
23

    
24
export class CountryOpenScienceModule {}
(4-4/4)