aboutsummaryrefslogtreecommitdiff
path: root/go/filer/flat_namespace/flat_namespace_store.go
blob: 832b70e4064e03dcc795d4143473b2badb407a58 (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) (fid string, err error)
}