Precondition represents a precondition necessary for a task to run
| 10 | |
| 11 | // Precondition represents a precondition necessary for a task to run |
| 12 | type Precondition struct { |
| 13 | Sh string |
| 14 | Msg string |
| 15 | } |
| 16 | |
| 17 | func (p *Precondition) DeepCopy() *Precondition { |
| 18 | if p == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected