vaguerent/internal/config/communicator.go
2022-04-25 12:23:57 -05:00

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"`
}