13 lines
185 B
Go
13 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"`
|
|
}
|