]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.module.ts
LP1840050 Modularize various standalone components + more.
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / vandelay / vandelay.module.ts
1 import {NgModule} from '@angular/core';
2 import {FmRecordEditorModule} from '@eg/share/fm-editor/fm-editor.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {CatalogCommonModule} from '@eg/share/catalog/catalog-common.module';
5 import {HttpClientModule} from '@angular/common/http';
6 import {TreeModule} from '@eg/share/tree/tree.module';
7 import {AdminPageModule} from '@eg/staff/share/admin-page/admin-page.module';
8 import {VandelayRoutingModule} from './routing.module';
9 import {VandelayService} from './vandelay.service';
10 import {VandelayComponent} from './vandelay.component';
11 import {ImportComponent} from './import.component';
12 import {ExportComponent} from './export.component';
13 import {QueueComponent} from './queue.component';
14 import {QueueListComponent} from './queue-list.component';
15 import {QueuedRecordComponent} from './queued-record.component';
16 import {QueuedRecordMatchesComponent} from './queued-record-matches.component';
17 import {DisplayAttrsComponent} from './display-attrs.component';
18 import {MergeProfilesComponent} from './merge-profiles.component';
19 import {HoldingsProfilesComponent} from './holdings-profiles.component';
20 import {QueueItemsComponent} from './queue-items.component';
21 import {RecordItemsComponent} from './record-items.component';
22 import {MatchSetListComponent} from './match-set-list.component';
23 import {MatchSetComponent} from './match-set.component';
24 import {MatchSetExpressionComponent} from './match-set-expression.component';
25 import {MatchSetQualityComponent} from './match-set-quality.component';
26 import {MatchSetNewPointComponent} from './match-set-new-point.component';
27 import {RecentImportsComponent} from './recent-imports.component';
28
29 @NgModule({
30   declarations: [
31     VandelayComponent,
32     ImportComponent,
33     ExportComponent,
34     QueueComponent,
35     QueueListComponent,
36     QueuedRecordComponent,
37     QueuedRecordMatchesComponent,
38     DisplayAttrsComponent,
39     MergeProfilesComponent,
40     HoldingsProfilesComponent,
41     QueueItemsComponent,
42     RecordItemsComponent,
43     MatchSetListComponent,
44     MatchSetComponent,
45     MatchSetExpressionComponent,
46     MatchSetQualityComponent,
47     MatchSetNewPointComponent,
48     RecentImportsComponent
49   ],
50   imports: [
51     TreeModule,
52     StaffCommonModule,
53     FmRecordEditorModule,
54     AdminPageModule,
55     CatalogCommonModule,
56     VandelayRoutingModule,
57     HttpClientModule,
58   ],
59   providers: [
60     VandelayService
61   ]
62 })
63
64 export class VandelayModule {
65 }