Update documentation for crc32c, cpu

This commit is contained in:
Harshavardhana
2014-12-13 01:39:14 -08:00
parent 643a293d94
commit 71c774f99b
9 changed files with 77 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
all: build test
.PHONY: all
build:
@godep go build
test: build
@godep go test -race -coverprofile=cover.out
clean:
@rm -v cover.out

View File

@@ -0,0 +1,11 @@
all: build test
.PHONY: all
build:
@godep go build
test: build
@godep go test -race -coverprofile=cover.out
clean:
@rm -v cover.out

View File

@@ -4,6 +4,7 @@ import "io"
type ObjectStorage interface {
List() ([]ObjectDescription, error)
// ListBucket(bucketName string) ([]ObjectDescription, error)
Get(path string) (io.Reader, error)
Put(path string, object io.Reader) error
}