(name string)
| 186 | } |
| 187 | |
| 188 | func serviceFromName(name string) swarm.Service { |
| 189 | return swarm.Service{ |
| 190 | ID: "ID-" + name, |
| 191 | Spec: swarm.ServiceSpec{ |
| 192 | Annotations: swarm.Annotations{Name: name}, |
| 193 | }, |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | func networkFromName(name string) network.Summary { |
| 198 | return network.Summary{ |
no outgoing calls
no test coverage detected
searching dependent graphs…