mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-20 22:47:51 +08:00
10 lines
226 B
Go
10 lines
226 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) (fid string, err error)
|
||
|
}
|