Graph represents project as service dependencies
| 206 | |
| 207 | // Graph represents project as service dependencies |
| 208 | type Graph struct { |
| 209 | Vertices map[string]*Vertex |
| 210 | lock sync.RWMutex |
| 211 | } |
| 212 | |
| 213 | // Vertex represents a service in the dependencies structure |
| 214 | type Vertex struct { |
nothing calls this directly
no outgoing calls
no test coverage detected