You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
226 B

  1. package flat_namespace
  2. import ()
  3. type FlatNamespaceStore interface {
  4. Put(fullFileName string, fid string) (err error)
  5. Get(fullFileName string) (fid string, err error)
  6. Delete(fullFileName string) (fid string, err error)
  7. }