mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { RouterModule } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { BitstreamFormatsComponent } from './bitstream-formats.component';
|
|
import { SharedModule } from '../../../shared/shared.module';
|
|
import { FormatFormComponent } from './format-form/format-form.component';
|
|
import { EditBitstreamFormatComponent } from './edit-bitstream-format/edit-bitstream-format.component';
|
|
import { BitstreamFormatsRoutingModule } from './bitstream-formats-routing.module';
|
|
import { AddBitstreamFormatComponent } from './add-bitstream-format/add-bitstream-format.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
RouterModule,
|
|
TranslateModule,
|
|
BitstreamFormatsRoutingModule
|
|
],
|
|
declarations: [
|
|
BitstreamFormatsComponent,
|
|
EditBitstreamFormatComponent,
|
|
AddBitstreamFormatComponent,
|
|
FormatFormComponent
|
|
],
|
|
entryComponents: []
|
|
})
|
|
export class BitstreamFormatsModule {
|
|
|
|
}
|