diff options
| author | 2026-04-16 02:06:56 +0700 | |
|---|---|---|
| committer | 2026-04-16 02:06:56 +0700 | |
| commit | 0bcb1538ce1d8a98cdf24df3bc7f54d56f33e2a5 (patch) | |
| tree | 264a6eae31ad75615980d6969d314f025a8ff8aa /internal/client/output/output_client_interface.go | |
| parent | 9effc519349612582a14f0402564725678f51d7f (diff) | |
| download | thumbnail-generator-0bcb1538ce1d8a98cdf24df3bc7f54d56f33e2a5.tar.gz thumbnail-generator-0bcb1538ce1d8a98cdf24df3bc7f54d56f33e2a5.zip | |
feat: s3 input & output clients
Diffstat (limited to 'internal/client/output/output_client_interface.go')
| -rw-r--r-- | internal/client/output/output_client_interface.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/client/output/output_client_interface.go b/internal/client/output/output_client_interface.go index f9e421b..4415aa4 100644 --- a/internal/client/output/output_client_interface.go +++ b/internal/client/output/output_client_interface.go @@ -28,5 +28,6 @@ type MetadataStruct struct { var NewOutputClientMap = map[string]func(cfg *config.OutputConfig) (OutputClient, error){ "b2": NewB2OutputClient, + "s3": NewS3OutputClient, "local-unix": NewLocalUnixOutputClient, } |