2024-01-19 09:53:17 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {PluginWrapperComponent} from "./plugin-wrapper.component";
|
|
|
|
import {PluginOpenaireProductsModule} from "../components/openaireProducts/plugin-openaire-products.module";
|
2024-01-31 10:05:46 +01:00
|
|
|
import {PluginDiscoverBySubcommunityModule} from '../components/discover-by-subcommunity/plugin-discover-by-subcommunity.module';
|
|
|
|
import {PluginGatewayInformationModule} from '../components/gateway-information/plugin-gateway-information.module';
|
|
|
|
import {PluginSearchDepositLinkModule} from '../components/search-deposit-link/plugin-search-deposit-link.module';
|
|
|
|
import {PluginLearnAndConnectModule} from '../components/learn-and-connect/plugin-learn-and-connect.module';
|
|
|
|
import {PluginHowToUseModule} from '../components/how-to-use/plugin-how-to-use.module';
|
|
|
|
import {PluginSuggestedRepositoriesModule} from '../components/suggested-repositories/plugin-suggested-repositories.module';
|
|
|
|
import {PluginFeaturedDatasetsModule} from '../components/featured-datasets/plugin-featured-datasets.module';
|
2024-02-28 12:07:31 +01:00
|
|
|
import {PluginOrganizationsModule} from "../components/organizations/plugin-organizations.module";
|
2024-03-11 12:29:29 +01:00
|
|
|
import {PluginGraphInfoModule} from "../components/graph-info/plugin-graph-info.module";
|
2024-03-13 08:03:58 +01:00
|
|
|
import {PluginStatsModule} from "../components/stats/plugin-stats.module";
|
2024-01-19 09:53:17 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2024-02-22 10:09:20 +01:00
|
|
|
CommonModule, RouterModule, FormsModule, PluginOpenaireProductsModule,
|
|
|
|
PluginDiscoverBySubcommunityModule, PluginSearchDepositLinkModule, PluginLearnAndConnectModule,
|
2024-03-13 08:03:58 +01:00
|
|
|
PluginHowToUseModule, PluginSuggestedRepositoriesModule, PluginFeaturedDatasetsModule, PluginGatewayInformationModule, PluginOrganizationsModule, PluginGraphInfoModule, PluginStatsModule
|
2024-01-19 09:53:17 +01:00
|
|
|
],
|
|
|
|
declarations: [PluginWrapperComponent],
|
|
|
|
exports: [PluginWrapperComponent]
|
|
|
|
|
|
|
|
})
|
|
|
|
export class PluginWrapperModule {
|
|
|
|
|
|
|
|
}
|