# Functions
BlobstoreFor returns the blobstore with the given name, or an error if one does not exist.
NewFilesystemStorage creates a Blobsstore compatible storage for the filesystem.
NewMemory creates a Blobstore that writes data in memory.
RegisterBlobstore registers a new blobstore with the given name.
RegisteredBlobstores returns the list of the names of the registered blobstores.
# Constants
No description provided by the author
No description provided by the author
# Variables
No description provided by the author
# Structs
Config defines the configuration for a blobstore.
FilesystemStorage implements Blobstore and provides the ability write files to the filesystem.
Memory implements Blobstore and provides the ability write files to memory.
# Interfaces
Blobstore defines the minimum interface for a blob storage system.
# Type aliases
BlobstoreFunc is a func that returns a blobstore or error.