mirror of
https://github.com/minio/minio.git
synced 2025-12-07 00:02:31 -05:00
Update documentation for crc32c, cpu
This commit is contained in:
11
pkgs/storage/appendstorage/Makefile
Normal file
11
pkgs/storage/appendstorage/Makefile
Normal 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
|
||||
11
pkgs/storage/fsstorage/Makefile
Normal file
11
pkgs/storage/fsstorage/Makefile
Normal 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
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user