Danny Bessems
502c361c21
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
243 B
Go
14 lines
243 B
Go
package utils
|
|
|
|
import "github.com/vmware/govmomi/vim25/types"
|
|
|
|
func BoolAddr(b bool) *bool {
|
|
boolVar := b
|
|
return &boolVar
|
|
}
|
|
|
|
func MoRefAddr(mo types.ManagedObjectReference) *types.ManagedObjectReference {
|
|
morefVar := mo
|
|
return &morefVar
|
|
}
|