The AutoEdge interface is used to implement the autoedges feature.
| 77 | |
| 78 | // The AutoEdge interface is used to implement the autoedges feature. |
| 79 | type AutoEdge interface { |
| 80 | Next() []ResUID // call to get list of edges to add |
| 81 | Test([]bool) bool // call until false |
| 82 | } |
| 83 | |
| 84 | // ResUID is a unique identifier for a resource, namely it's name, and the kind |
| 85 | // ("type"). |
no outgoing calls
no test coverage detected