fix const declaration issue

This commit is contained in:
2026-04-19 00:19:58 +00:00
parent a2bf608a54
commit ca61c1eddc

View File

@@ -17,10 +17,8 @@ type Node struct {
type InstanceID uint64
type InstanceType string
const (
VM InstanceType = "VM"
CT InstanceType = "CT"
)
const VM InstanceType = "VM"
const CT InstanceType = "CT"
type Instance struct {
Type InstanceType `json:"type"`