Labels parser.
This commit is contained in:
parent
92f8e5cd3f
commit
11a0078966
16 changed files with 4462 additions and 4 deletions
13
provider/label/internal/node.go
Normal file
13
provider/label/internal/node.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
package internal
|
||||
|
||||
import "reflect"
|
||||
|
||||
// Node a label node.
|
||||
type Node struct {
|
||||
Name string `json:"name"`
|
||||
FieldName string `json:"fieldName"`
|
||||
Value string `json:"value,omitempty"`
|
||||
Disabled bool `json:"disabled,omitempty"`
|
||||
Kind reflect.Kind `json:"kind,omitempty"`
|
||||
Children []*Node `json:"children,omitempty"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue