/** * Storage Plugins * @module @plyaz/storage/plugins * * Plugin system for extending storage functionality with lifecycle hooks. */ export { BasePlugin } from './base/BasePlugin'; export { PluginRegistry } from './registry/PluginRegistry'; export { VirusScanPlugin, VirusTotalProvider, ClamAVProvider, BaseVirusScanProvider, } from './providers/virus-scan'; export { SharpImagePlugin } from './providers/image-processing'; export { FFmpegVideoPlugin } from './providers/video-processing'; export { MetadataExtractionPlugin } from './providers/metadata-extraction'; export { CloudflareCDNPlugin } from './providers/cdn/cloudflare'; export { CloudFrontCDNPlugin } from './providers/cdn/cloudfront'; export { FastlyCDNPlugin } from './providers/cdn/fastly';