Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IFileStorage ¶
type IFileStorage interface { UploadFile(fileName string, fileSize int64, reader io.ReadSeeker) error DownloadFile(fileName string) (io.ReadCloser, error) FileSize(fileName string) (int64, error) DeleteDirectory(directory string) error DeleteFile(fileName string) error Walk(directory string, walk WalkFunc) error }
IFileStorage is the interface for a filestorage used by the ecosystem
Click to show internal directories.
Click to hide internal directories.