18 lines
472 B
Python
18 lines
472 B
Python
"""
|
|
Storage infrastructure - file storage backends (local, S3).
|
|
"""
|
|
|
|
from cpv3.infrastructure.storage.base import StorageBackend
|
|
from cpv3.infrastructure.storage.local import LocalConfig, LocalStorageBackend
|
|
from cpv3.infrastructure.storage.s3 import S3Config, S3StorageBackend
|
|
from cpv3.infrastructure.storage.types import FileInfo
|
|
|
|
__all__ = [
|
|
"StorageBackend",
|
|
"LocalConfig",
|
|
"LocalStorageBackend",
|
|
"S3Config",
|
|
"S3StorageBackend",
|
|
"FileInfo",
|
|
]
|