Add S3 backend and storage verification

This commit is contained in:
2026-05-16 23:26:03 +02:00
parent b7ceaf7682
commit 864f7f203c
18 changed files with 1085 additions and 40 deletions

View File

@@ -6,6 +6,7 @@ adding adapters never touches the registry or API layers.
"""
from artifactstore.storage.backends.local import LocalBackend
from artifactstore.storage.backends.s3 import S3Backend, S3BackendConfig
from artifactstore.storage.registry import (
clear as clear_backends,
)
@@ -32,6 +33,8 @@ __all__ = [
"DeletionResult",
"LocalBackend",
"ObjectNotFoundError",
"S3Backend",
"S3BackendConfig",
"StorageBackend",
"StorageObjectMetadata",
"StorageReceipt",