| 50 | } |
| 51 | |
| 52 | type RollbackVisitor struct { |
| 53 | clientset kubernetes.Interface |
| 54 | result Rollbacker |
| 55 | } |
| 56 | |
| 57 | func (v *RollbackVisitor) VisitDeployment(elem apps.GroupKindElement) { |
| 58 | v.result = &DeploymentRollbacker{v.clientset} |
nothing calls this directly
no outgoing calls
no test coverage detected