diff options
Diffstat (limited to 'weed/filer2/filerstore.go')
| -rw-r--r-- | weed/filer2/filerstore.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/filer2/filerstore.go b/weed/filer2/filerstore.go index 68fc06a5d..9ef1d9d48 100644 --- a/weed/filer2/filerstore.go +++ b/weed/filer2/filerstore.go @@ -2,13 +2,14 @@ package filer2 import ( "errors" + "github.com/chrislusf/seaweedfs/weed/util" ) type FilerStore interface { // GetName gets the name to locate the configuration in filer.toml file GetName() string // Initialize initializes the file store - Initialize(configuration Configuration) error + Initialize(configuration util.Configuration) error InsertEntry(*Entry) error UpdateEntry(*Entry) (err error) // err == filer2.ErrNotFound if not found |
