package blob import ( "context" "io" ) type Store interface { Put(ctx context.Context, key string, reader io.Reader, size int64) error Get(ctx context.Context, key string) (io.ReadCloser, error) Delete(ctx context.Context, key string) error }