import { Module } from '@nestjs/common'; import { DiscogsService } from './discogs.service'; import { CoverStorageService } from './cover-storage.service'; import { EnrichmentService } from './enrichment.service'; @Module({ providers: [DiscogsService, CoverStorageService, EnrichmentService], exports: [EnrichmentService], }) export class EnrichModule {}