2023-12-08 12:18:24 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {EntityMetadataComponent} from './entity-metadata.component';
|
|
|
|
import {IconsModule} from '../../utils/icons/icons.module';
|
|
|
|
import {AlertModalModule} from '../../utils/modal/alertModal.module';
|
2023-12-20 22:29:07 +01:00
|
|
|
import {ShowPublisherModule} from "./showPublisher.module";
|
2023-12-08 12:18:24 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2023-12-20 22:29:07 +01:00
|
|
|
CommonModule, IconsModule, AlertModalModule, ShowPublisherModule
|
2023-12-08 12:18:24 +01:00
|
|
|
],
|
|
|
|
declarations: [EntityMetadataComponent],
|
|
|
|
providers:[],
|
|
|
|
exports: [EntityMetadataComponent]
|
|
|
|
})
|
|
|
|
export class EntityMetadataModule { }
|