mirror of
https://github.com/pgsty/minio.git
synced 2026-07-16 00:41:25 +03:00
62797cd6a7
Removing unneeded comment from storage.ObjectStorage
16 lines
262 B
Go
16 lines
262 B
Go
package storage
|
|
|
|
import "io"
|
|
|
|
type ObjectStorage interface {
|
|
List() ([]ObjectDescription, error)
|
|
Get(path string) (io.Reader, error)
|
|
Put(path string, object io.Reader) error
|
|
}
|
|
|
|
type ObjectDescription struct {
|
|
Name string
|
|
Md5sum string
|
|
Murmur3 string
|
|
}
|