Documentation
¶
Index ¶
- type File
- type Filesystem
- func (f Filesystem) Close() error
- func (f Filesystem) Create(name string) (File, error)
- func (f Filesystem) Mkdir(name string, perm fs.FileMode) error
- func (f Filesystem) MkdirAll(path string, perm fs.FileMode) error
- func (f Filesystem) Open(name string) (File, error)
- func (f Filesystem) Remove(name string) error
- func (f Filesystem) Sub(dir string) (Storage, error)
- type S3
- func (s S3) Close() error
- func (s S3) Create(name string) (File, error)
- func (s S3) Mkdir(name string, perm fs.FileMode) error
- func (s S3) MkdirAll(path string, perm fs.FileMode) error
- func (s S3) Open(name string) (File, error)
- func (s S3) Remove(name string) error
- func (s S3) Sub(dir string) (Storage, error)
- type S3File
- type Storage
- type StorageManager
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Filesystem ¶ added in v0.0.199
type Filesystem struct { Storage StorageManager // contains filtered or unexported fields }
func (Filesystem) Close ¶ added in v0.0.199
func (f Filesystem) Close() error
func (Filesystem) Mkdir ¶ added in v0.0.199
func (f Filesystem) Mkdir(name string, perm fs.FileMode) error
func (Filesystem) MkdirAll ¶ added in v0.0.199
func (f Filesystem) MkdirAll(path string, perm fs.FileMode) error
func (Filesystem) Remove ¶ added in v0.0.199
func (f Filesystem) Remove(name string) error
type S3 ¶ added in v0.0.199
type S3 struct { Storage StorageManager // contains filtered or unexported fields }
type S3File ¶ added in v0.0.199
type S3File struct { File // contains filtered or unexported fields }
type Storage ¶
type Storage interface { StorageManager Close() error }
Click to show internal directories.
Click to hide internal directories.