Node represents a node in a graph
| 10 | |
| 11 | // Node represents a node in a graph |
| 12 | type Node struct { |
| 13 | id string |
| 14 | neighbors []*Node |
| 15 | } |
| 16 | |
| 17 | // NewNode returns a new Node instance |
| 18 | func NewNode(id string) *Node { |
nothing calls this directly
no outgoing calls
no test coverage detected