feat: add MediaModule with service for virus scanning and media processing

Introduced MediaModule with MediaService to handle antivirus scanning using ClamAV and media file processing for images (webp/avif) and videos (webm/av1). Includes media-related interfaces and module exports for broader application integration.
This commit is contained in:
Mathis HERRIOT
2026-01-08 15:26:25 +01:00
parent 92ea36545a
commit dd875fe1ea
3 changed files with 185 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Module } from "@nestjs/common";
import { MediaService } from "./media.service";
@Module({
providers: [MediaService],
exports: [MediaService],
})
export class MediaModule {}