diff options
| author | 2026-04-15 16:26:00 +0700 | |
|---|---|---|
| committer | 2026-04-15 16:26:00 +0700 | |
| commit | 129e48683f6fc0615b606a737f2afcd50538bb2e (patch) | |
| tree | 4c9481f725bef512ca58cb6daaef467f9ca1de2c /internal/storage/storage_interface.go | |
| parent | d3b9bd54cc3e13b5a9d16404717551238eab18c6 (diff) | |
| download | articlator-129e48683f6fc0615b606a737f2afcd50538bb2e.tar.gz articlator-129e48683f6fc0615b606a737f2afcd50538bb2e.zip | |
feat: s3 storage client
feat: claude.md
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, } |