feat(api-attachment): add minio presigned upload flow
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { PrismaModule } from "../prisma/prisma.module";
|
||||
import { AttachmentController } from "./attachment.controller";
|
||||
import { AttachmentService } from "./attachment.service";
|
||||
|
||||
@Module({
|
||||
imports: [PrismaModule],
|
||||
controllers: [AttachmentController],
|
||||
providers: [AttachmentService]
|
||||
})
|
||||
export class AttachmentModule {}
|
||||
Reference in New Issue
Block a user