mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-22 01:11:43 -05:00
12 lines
185 B
Go
12 lines
185 B
Go
package config
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl/v2"
|
|
)
|
|
|
|
type Communicator struct {
|
|
Name string `hcl:"name,label"`
|
|
|
|
Body hcl.Body `hcl:",body"`
|
|
Remain hcl.Body `hcl:",remain"`
|
|
}
|