mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-04-27 09:06:38 -04:00
12 lines
179 B
Go
12 lines
179 B
Go
package config
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl/v2"
|
|
)
|
|
|
|
type Target struct {
|
|
Name string `hcl:"name,label"`
|
|
|
|
Body hcl.Body `hcl:",body"`
|
|
Remain hcl.Body `hcl:",remain"`
|
|
}
|