Fixing build

This commit is contained in:
Frederick F. Kautz IV
2014-12-10 17:43:16 -08:00
parent 9dd3dd8b53
commit e670608226
3 changed files with 24 additions and 9 deletions

View File

@@ -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")
}