-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoqt.module.ts
More file actions
42 lines (39 loc) · 1.65 KB
/
oqt.module.ts
File metadata and controls
42 lines (39 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import {NgModule} from '@angular/core';
import {OqtApiMetadataProviderService} from './oqt-api-metadata-provider.service';
import {OqtApiService} from './oqt-api.service';
import {OqtResultComponent} from './result/oqt-result.component';
import {IndicatorResultComponent} from './result/indicator-result/indicator-result.component';
import {OqtApiQueryFormComponent} from './query-form/oqt-api-query-form/oqt-api-query-form.component';
import {SimpleIndicatorComponent} from './query-form/oqt-api-query-form/simple-indicator/simple-indicator.component';
import {
AttributeCompletenessAttributesComponent
} from './query-form/oqt-api-query-form/attribute-completeness-attributes/attribute-completeness-attributes.component';
import {PrismEditorComponent} from '../shared/components/prism-editor/prism-editor.component';
import {SuiMultiSelectSearchDropdownComponent} from '../shared/components/sui-dropdown/sui-multi-select-search-dropdown.component';
import {
ThematicAccuracyIndicatorComponent
} from "./query-form/oqt-api-query-form/thematic-accuracy-indicator/thematic-accuracy-indicator.component";
@NgModule({
imports: [
PrismEditorComponent,
SuiMultiSelectSearchDropdownComponent,
OqtApiQueryFormComponent,
SimpleIndicatorComponent,
AttributeCompletenessAttributesComponent,
OqtResultComponent,
IndicatorResultComponent,
ThematicAccuracyIndicatorComponent
],
providers: [
OqtApiMetadataProviderService,
OqtApiService
],
exports: [
OqtApiQueryFormComponent,
SimpleIndicatorComponent,
AttributeCompletenessAttributesComponent,
OqtResultComponent
]
})
export class OqtModule {
}