summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go
blob: cd597a2f220608c4d32bc8521de9b41bd0aac5a6 (plain)
1
2
3
4
5
6
7
8
package node

type Node struct {
	ID    int
	Value interface{}
}

type NodeOrderedSet []Node