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.
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { MediaService } from "./media.service";
|
|
|
|
@Module({
|
|
providers: [MediaService],
|
|
exports: [MediaService],
|
|
})
|
|
export class MediaModule {}
|