diff options
Diffstat (limited to 'internal/storage/storage_interface.go')
| -rw-r--r-- | internal/storage/storage_interface.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/storage/storage_interface.go b/internal/storage/storage_interface.go index 02e0790..7134e30 100644 --- a/internal/storage/storage_interface.go +++ b/internal/storage/storage_interface.go @@ -16,4 +16,5 @@ type StorageClient interface { var NewStorageClientMap = map[string]func(*config.StorageConfig, *config.DraftModeConfig) (StorageClient, error){ "b2": NewB2StorageClient, + "s3": NewS3StorageClient, } |