feat: add blob store Initialize method

This commit is contained in:
2025-11-29 18:39:21 +00:00
parent ab4c14bc09
commit 42b805fbd1
3 changed files with 11 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ type UpdateOptions struct {
}
type Store interface {
Initialize(ctx context.Context) error
GenerateUploadURL(ctx context.Context, key Key, opts UploadURLOptions) (string, error)
Put(ctx context.Context, key Key, reader io.Reader) error
Update(ctx context.Context, key Key, opts UpdateOptions) error