Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Base ¶
type Base interface {
Start() error
}
Base is an interface that defines a start function, used for setup.
type ReadDeleter ¶
ReadDeleter is a type with Base, Reader and Deleter
type ReadWriteDeleter ¶
type ReadWriteDeleter interface { Base NewReader(string) (io.ReadCloser, error) NewWriter(string) (io.WriteCloser, error) Delete(string) error }
ReadWriteDeleter is a type with Base, Reader, Writer and Deleter
type ReadWriter ¶
type ReadWriter interface { Base NewReader(string) (io.ReadCloser, error) NewWriter(string) (io.WriteCloser, error) }
ReadWriter is a type with Base, Reader and Writer
type Reader ¶
type Reader interface { Base NewReader(string) (io.ReadCloser, error) }
Reader is a base interface to read data.
type WriteDeleter ¶
WriteDeleter is a type with Base, Writer and Deleter
Click to show internal directories.
Click to hide internal directories.