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>
22 lines
404 B
Go
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,
|
|
}
|
|
}
|