mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00: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)
|
||
|
}
|