This commit is contained in:
2025-10-14 15:37:37 -05:00
commit 6821e717cd
39 changed files with 3346 additions and 0 deletions

6
app/storage/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from .base import StorageBackend
from .s3_backend import S3Backend
from .minio_backend import MinIOBackend
from .factory import get_storage_backend
__all__ = ["StorageBackend", "S3Backend", "MinIOBackend", "get_storage_backend"]