feat: commit

This commit is contained in:
luchang
2024-06-19 14:17:37 +08:00
parent fa41ee8a4b
commit 24ead9aad7
31 changed files with 4115 additions and 4516 deletions
+2
View File
@@ -1,8 +1,10 @@
import { Module } from '@nestjs/common';
import { OssService } from './oss.service';
import { OssController } from './oss.controller';
import { ConfigModule } from '@nestjs/config';
@Module({
imports: [ConfigModule],
controllers: [OssController],
providers: [OssService],
})