(name string)
| 213 | } |
| 214 | |
| 215 | func configFromName(name string) swarm.Config { |
| 216 | return swarm.Config{ |
| 217 | ID: "ID-" + name, |
| 218 | Spec: swarm.ConfigSpec{ |
| 219 | Annotations: swarm.Annotations{Name: name}, |
| 220 | }, |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | func namespaceFromFilters(fltrs client.Filters) string { |
| 225 | // FIXME(thaJeztah): more elegant way for this? Should we have a utility for this? |
no outgoing calls
no test coverage detected
searching dependent graphs…