apps/posts/storage/interface.go 224 B raw
1
package storage
2
3
import "context"
4
5
type Backend interface {
6
	Put(ctx context.Context, key, contentType string, data []byte) error
7
	Delete(ctx context.Context, key string) error
8
	PublicURL(key string) string
9
	Name() string
10
}