mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 16:57:24 +08:00
filer mysqlstore bug fix
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
package filer
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
type FileId string //file id in SeaweedFS
|
||||
|
||||
type FileEntry struct {
|
||||
@@ -26,3 +30,5 @@ type Filer interface {
|
||||
DeleteDirectory(dirPath string, recursive bool) (err error)
|
||||
Move(fromPath string, toPath string) (err error)
|
||||
}
|
||||
|
||||
var ErrNotFound = errors.New("filer: no entry is found in filer store")
|
||||
|
Reference in New Issue
Block a user