Files
docker-machine/vendor/github.com/vmware/govcloudair/vapptemplate.go
Olivier Gambier c9117af080 Move to vendor
As we walk away from 1.4, godep no longer requires to have stuff into workspace and we no longer need the symlink.

Signed-off-by: Olivier Gambier <olivier@docker.com>
2015-11-03 21:14:39 -08:00

22 lines
404 B
Go

/*
* Copyright 2014 VMware, Inc. All rights reserved. Licensed under the Apache v2 License.
*/
package govcloudair
import (
types "github.com/vmware/govcloudair/types/v56"
)
type VAppTemplate struct {
VAppTemplate *types.VAppTemplate
c *Client
}
func NewVAppTemplate(c *Client) *VAppTemplate {
return &VAppTemplate{
VAppTemplate: new(types.VAppTemplate),
c: c,
}
}