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
commit b1d2f1df1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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