aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/flat_namespace/flat_namespace_store.go
blob: dc158f7ad7ccc8e14330c4bc2be297f3626824f9 (plain)
1
2
3
4
5
6
7
8
9
package flat_namespace

import ()

type FlatNamespaceStore interface {
	Put(fullFileName string, fid string) (err error)
	Get(fullFileName string) (fid string, err error)
	Delete(fullFileName string) (err error)
}