mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
24 lines
758 B
TypeScript
24 lines
758 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { EditBitstreamPageComponent } from './edit-bitstream-page/edit-bitstream-page.component';
|
|
import { BitstreamPageRoutingModule } from './bitstream-page-routing.module';
|
|
import { BitstreamAuthorizationsComponent } from './bitstream-authorizations/bitstream-authorizations.component';
|
|
|
|
/**
|
|
* This module handles all components that are necessary for Bitstream related pages
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
BitstreamPageRoutingModule
|
|
],
|
|
declarations: [
|
|
BitstreamAuthorizationsComponent,
|
|
EditBitstreamPageComponent
|
|
]
|
|
})
|
|
export class BitstreamPageModule {
|
|
}
|