8 lines
146 B
Go
8 lines
146 B
Go
|
package internal
|
||
|
|
||
|
type Node struct {
|
||
|
Name string `hcl:"name"`
|
||
|
Value int `hcl:"value,optional"`
|
||
|
IsStart bool `hcl:"start,optional"`
|
||
|
}
|