import { Module, forwardRef } from '@nestjs/common'; import { ElasticsearchService } from './elasticsearch.service'; import { KnowledgeGroupModule } from '../knowledge-group/knowledge-group.module'; @Module({ imports: [forwardRef(() => KnowledgeGroupModule)], providers: [ElasticsearchService], exports: [ElasticsearchService], }) export class ElasticsearchModule {}