Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type HTTPClient ¶
HTTPClient defines the methods an HTTPClient implementation must provide.
type Store ¶
type Store interface { // DownloadAndSaveImage downloads the image located at the url provided and // stores it returning the image ID. DownloadAndSaveImage(ctx context.Context, imageURL string) (imageID string, err error) // GetImage returns the image identified by the ID and version provided. GetImage(ctx context.Context, imageID, version string) (datd []byte, err error) // SaveImage stores an image returning the image ID. SaveImage(ctx context.Context, data []byte) (imageID string, err error) }
Store describes the methods an image.Store implementation must provide.
Click to show internal directories.
Click to hide internal directories.