constant.go 638 Bytes
package common

const (
	Stopped                   = "stopped"
	Running                   = "running"
	Ens18                     = "ens18"
	Ipv4                      = "ipv4"
	Ipv6                      = "ipv6"
	SuccessCode               = 200
	LocalHost                 = "127.0.0.1"
	DefaultSshPort            = "22"
	DefaultVncPort            = "5901"
	NpsReqFailedStatus  int64 = 0
	SplitSupportType          = "-"
	VmSupportConnectVnc       = 1
	VmSupportConnectSsh       = 2
	VmSupportConnectAll       = 3
	VmStatusEnabled     uint8 = 1
	VmStatusDisable     uint8 = 2
	VmStatusReboot      uint8 = 3
	VmStatusDelete      uint8 = 4
)