forked from hazza/dspace-angular
19 lines
513 B
TypeScript
19 lines
513 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';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
BitstreamPageRoutingModule
|
|
],
|
|
declarations: [
|
|
EditBitstreamPageComponent
|
|
]
|
|
})
|
|
export class BitstreamPageModule {
|
|
}
|