2022-04-25 12:23:57 -05:00

14 lines
211 B
Go

package config
import (
"github.com/hashicorp/hcl/v2"
)
type Machine struct {
Name string `hcl:"name,label"`
Box string `hcl:"box,label"`
Body hcl.Body `hcl:",body"`
Remain hcl.Body `hcl:",remain"`
}