Node is a wrapper around an etcd node to provide additional functionality around kites.
| 13 | // Node is a wrapper around an etcd node to provide additional |
| 14 | // functionality around kites. |
| 15 | type Node struct { |
| 16 | Node *etcd.Node |
| 17 | } |
| 18 | |
| 19 | // New returns a new initialized node with the given etcd node. |
| 20 | func NewNode(node *etcd.Node) *Node { |
nothing calls this directly
no outgoing calls
no test coverage detected