21 lines
692 B
Python
21 lines
692 B
Python
|
|
"""Storage service module for file upload operations"""
|
||
|
|
|
||
|
|
from app.services.storage.attachment_service import AttachmentService
|
||
|
|
from app.services.storage.base import StorageAdapter
|
||
|
|
from app.services.storage.file_processor import (FileProcessor, ImageProcessor,
|
||
|
|
PDFProcessor)
|
||
|
|
from app.services.storage.file_service import FileService
|
||
|
|
from app.services.storage.minio_client import MinIOStorageAdapter
|
||
|
|
from app.services.storage.storage_extension import storage
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"StorageAdapter",
|
||
|
|
"MinIOStorageAdapter",
|
||
|
|
"FileProcessor",
|
||
|
|
"ImageProcessor",
|
||
|
|
"PDFProcessor",
|
||
|
|
"FileService",
|
||
|
|
"AttachmentService",
|
||
|
|
"storage",
|
||
|
|
]
|