init: new structure + fix lint errors
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user