Merge pull request #2283 from crosbymichael/image

Add NewImage to return a client Image impl
This commit is contained in:
Michael Crosby
2018-04-09 16:58:06 -04:00
committed by GitHub

View File

@@ -53,6 +53,14 @@ type Image interface {
var _ = (Image)(&image{})
// NewImage returns a client image object from the metadata image
func NewImage(client *Client, i images.Image) Image {
return &image{
client: client,
i: i,
}
}
type image struct {
client *Client