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

View File

@@ -14,6 +14,8 @@ import { IrcbotService } from './ircbot/ircbot.service';
import { DinosaurwetModule } from './dinosaurwet/dinosaurwet.module';
import { OgScraperModule } from './ogscraper/ogscraper.module';
import { PrometheusModule } from '@willsoto/nestjs-prometheus';
import { MinioModule } from './minio/minio.module';
import { KvModule } from './kv/kv.module';
@Module({
imports: [
@@ -35,6 +37,8 @@ import { PrometheusModule } from '@willsoto/nestjs-prometheus';
IrcbotModule,
DinosaurwetModule,
OgScraperModule,
MinioModule,
KvModule,
],
controllers: [AppController],
providers: [AppService],