1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-07 01:27:01 +02:00
seaweedfs/weed/filer/flat_namespace/flat_namespace_store.go
2016-06-11 01:16:19 +08:00

10 lines
214 B
Go

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