const tmpPrefix …
type FileStore …
func NewFileStore(path string, fs utilfs.Filesystem) (Store, error) { … }
func (f *FileStore) Write(key string, data []byte) error { … }
func (f *FileStore) Read(key string) ([]byte, error) { … }
func (f *FileStore) Delete(key string) error { … }
func (f *FileStore) List() ([]string, error) { … }
func (f *FileStore) getPathByKey(key string) string { … }
func writeFile(fs utilfs.Filesystem, path string, data []byte) (retErr error) { … }
func removePath(fs utilfs.Filesystem, path string) error { … }