import { Module } from '@nestjs/common'; import { KvService } from './kv.service'; import { KvController } from './kv.controller'; import { MinioService } from 'src/minio/minio.service'; @Module({ providers: [KvService, MinioService], controllers: [KvController], }) export class KvModule {}