]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.module.ts
LP2061136 - Stamping 1405 DB upgrade script
[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 import {MarcEditModule} from '@eg/staff/share/marc-edit/marc-edit.module';
29
30 @NgModule({
31   declarations: [
32     VandelayComponent,
33     ImportComponent,
34     ExportComponent,
35     QueueComponent,
36     QueueListComponent,
37     QueuedRecordComponent,
38     QueuedRecordMatchesComponent,
39     DisplayAttrsComponent,
40     MergeProfilesComponent,
41     HoldingsProfilesComponent,
42     QueueItemsComponent,
43     RecordItemsComponent,
44     MatchSetListComponent,
45     MatchSetComponent,
46     MatchSetExpressionComponent,
47     MatchSetQualityComponent,
48     MatchSetNewPointComponent,
49     RecentImportsComponent
50   ],
51   imports: [
52     TreeModule,
53     StaffCommonModule,
54     FmRecordEditorModule,
55     AdminPageModule,
56     MarcEditModule,
57     CatalogCommonModule,
58     VandelayRoutingModule,
59     HttpClientModule,
60   ],
61   providers: [
62     VandelayService
63   ]
64 })
65
66 export class VandelayModule {
67 }