mirror of
https://github.com/minio/minio.git
synced 2025-12-08 08:42:43 -05:00
Fixing build
This commit is contained in:
@@ -3,6 +3,7 @@ package appendstorage
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/gob"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path"
|
||||
@@ -97,3 +98,7 @@ func (storage *appendStorage) Put(objectPath string, object []byte) error {
|
||||
ioutil.WriteFile(storage.objectsFile, mapBuffer.Bytes(), 0600)
|
||||
return nil
|
||||
}
|
||||
|
||||
func (storage *appendStorage) GetList() ([]byte, error) {
|
||||
return nil, errors.New("Not Implemented")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user