Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { // Return the contents at a given key. Returns an error if the key doesn't // exist. Get(key string) (io.ReadCloser, int64, error) // Store the contents of the input reader in the blobstore under the given key. Put(key string, blob io.Reader, length int64) error // Delete the contents stored at the given key Delete(key string) error // Returns true if the given key is already in the store. May return a // error if the store in unavailable Contains(key string) (bool, error) }
func NewFileSystem ¶
func NewSynchronized ¶
Click to show internal directories.
Click to hide internal directories.