(pod, namespace, defaultContainer string, parent *tomb.Tomb)
| 19 | } |
| 20 | |
| 21 | func newTargetSelector(pod, namespace, defaultContainer string, parent *tomb.Tomb) targetselector.TargetSelector { |
| 22 | return &targetSelector{ |
| 23 | pod: pod, |
| 24 | namespace: namespace, |
| 25 | defaultContainer: defaultContainer, |
| 26 | parent: parent, |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | type targetSelector struct { |
| 31 | pod string |
no outgoing calls
no test coverage detected