Versions in this module Expand all Collapse all v0 v0.3.0 Aug 24, 2026 Changes in this version + type Config struct + AccessKey string + Bucket string + Endpoint string + SecretKey string + UseSSL bool + type ObjectStore interface + Delete func(ctx context.Context, key string) error + Get func(ctx context.Context, key string) (io.ReadCloser, error) + Put func(ctx context.Context, key string, r io.Reader, size int64, contentType string) error + type S3Store struct + func NewS3Store(ctx context.Context, cfg Config) (*S3Store, error) + func (s *S3Store) Delete(ctx context.Context, key string) error + func (s *S3Store) Get(ctx context.Context, key string) (io.ReadCloser, error) + func (s *S3Store) Put(ctx context.Context, key string, r io.Reader, size int64, contentType string) error + func (s *S3Store) Ready(ctx context.Context) error v0.3.0-rc.1 Aug 23, 2026