9 lines
171 B
Go
9 lines
171 B
Go
|
package internal
|
||
|
|
||
|
type Link struct {
|
||
|
From string `hcl:"from"`
|
||
|
To string `hcl:"to"`
|
||
|
Oriented bool `hcl:"oriented,optional"`
|
||
|
Value int `hcl:"value"`
|
||
|
}
|