(checksum string)
| 37 | } |
| 38 | |
| 39 | func WithChecksum(checksum string) NodeOption { |
| 40 | return func(node *baseNode) { |
| 41 | node.checksum = checksum |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func (node *baseNode) Parent() Node { |
| 46 | return node.parent |
no outgoing calls
no test coverage detected
searching dependent graphs…