Node is a simple wrapper around the lower level yaml Node.
| 6 | |
| 7 | // Node is a simple wrapper around the lower level yaml Node. |
| 8 | type Node struct { |
| 9 | *yaml.Node |
| 10 | } |
| 11 | |
| 12 | // NewMappingNode returns a new node pointing to a yaml map. |
| 13 | func NewMappingNode() *Node { |
nothing calls this directly
no outgoing calls
no test coverage detected