fix bug: filer DELETE

This commit is contained in:
DaLin
2016-06-11 01:16:19 +08:00
parent e416679cea
commit fa2a7b5f2f
4 changed files with 19 additions and 7 deletions

View File

@@ -5,5 +5,5 @@ import ()
type FlatNamespaceStore interface {
Put(fullFileName string, fid string) (err error)
Get(fullFileName string) (fid string, err error)
Delete(fullFileName string) (fid string, err error)
Delete(fullFileName string) (err error)
}