Add minio and kv modules

This commit is contained in:
2023-11-19 18:36:29 -07:00
parent 7187ed7994
commit 7c40650b9a
9 changed files with 395 additions and 0 deletions

10
src/kv/kv.module.ts Normal file
View File

@@ -0,0 +1,10 @@
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 {}