package storage

type Client interface {
	Read(path string) ([]byte, error)
	ReadFile(path string) ([]byte, error)
	ReadDir(path string) ([]string, error)
	WriteFile(path string, data []byte) error
	Delete(path string) error
}
