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