summaryrefslogtreecommitdiff
path: root/internal/storage/storage_interface.go
diff options
from:
to:
context:
space:
mode:
authorGravatar SayaAndy <saya.andy@posteo.com> 2026-04-15 16:26:00 +0700
committerGravatar SayaAndy <saya.andy@posteo.com> 2026-04-15 16:26:00 +0700
commit129e48683f6fc0615b606a737f2afcd50538bb2e (patch)
tree4c9481f725bef512ca58cb6daaef467f9ca1de2c /internal/storage/storage_interface.go
parentd3b9bd54cc3e13b5a9d16404717551238eab18c6 (diff)
downloadarticlator-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.go1
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,
}