traefik/provider/label/internal/node.go
Ludovic Fernandez 11a0078966 Labels parser.
2018-12-04 14:24:04 +01:00

13 lines
361 B
Go

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