minio/pkgs/storage/storage.go

7 lines
123 B
Go
Raw Normal View History

package storage
type ObjectStorage interface {
Get(path string) ([]byte, error)
Put(path string, object []byte) error
}