mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
26 lines
608 B
TypeScript
26 lines
608 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { CollectionPageRoutingModule } from './collection-page-routing.module';
|
|
import { SearchService } from '../+search-page/search-service/search.service';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CollectionPageRoutingModule
|
|
],
|
|
declarations: [
|
|
CollectionPageComponent,
|
|
],
|
|
providers: [
|
|
SearchService
|
|
]
|
|
})
|
|
export class CollectionPageModule {
|
|
|
|
}
|