Files
Go.NPP-Prepper/pkg/utils/utils.go
Danny Bessems 502c361c21
All checks were successful
continuous-integration/drone/push Build is passing
Add referencing functions;Add required flags;Populate and associate network protocol profile
2022-12-29 11:34:51 +01:00

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
}