storageabstraction

package
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 27, 2022 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileInfo added in v0.0.2

type FileInfo struct {
	Size  int64
	IsDir bool
}

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

type WalkFunc added in v0.0.2

type WalkFunc func(path string, info FileInfo, err error) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL