diff options
| author | 2025-07-16 17:49:03 +0700 | |
|---|---|---|
| committer | 2025-07-16 17:49:03 +0700 | |
| commit | f968d443dc5c6e1f5140922313b0d6e8019fc269 (patch) | |
| tree | efe1507ec20feccbe408ca2b05303400546431b1 /internal/client/output/b2.go | |
| parent | 4fa22c837cb00b87cd43c0aceec26729b8c3fa48 (diff) | |
| download | thumbnail-generator-f968d443dc5c6e1f5140922313b0d6e8019fc269.tar.gz thumbnail-generator-f968d443dc5c6e1f5140922313b0d6e8019fc269.zip | |
feat: implement local-unix clients
Diffstat (limited to 'internal/client/output/b2.go')
| -rw-r--r-- | internal/client/output/b2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/client/output/b2.go b/internal/client/output/b2.go index 6979e5b..e741e25 100644 --- a/internal/client/output/b2.go +++ b/internal/client/output/b2.go @@ -19,7 +19,7 @@ type B2OutputClient struct { b2cl *b2.Client } -func NewB2OutputClient(cfg *config.OutputConfig) (*B2OutputClient, error) { +func NewB2OutputClient(cfg *config.OutputConfig) (OutputClient, error) { if cfg.Storage.Type != "b2" { return nil, fmt.Errorf("invalid storage type for B2OutputClient") } |