Removing old server

Removing storage drivers
This commit is contained in:
Frederick F. Kautz IV
2015-01-18 13:32:07 -08:00
parent 7c861eec12
commit f550e84cf4
43 changed files with 1 additions and 7864 deletions

View File

@@ -1,15 +1 @@
package storage
import "io"
type ObjectStorage interface {
List(objectPath string) ([]ObjectDescription, error)
Get(path string) (io.Reader, error)
Put(path string, object io.Reader) error
}
type ObjectDescription struct {
Name string
Md5sum string
Murmur3 string
}