()
| 73 | } |
| 74 | |
| 75 | func (variable *listFlag) String() string { |
| 76 | return fmt.Sprint(variable.elements) |
| 77 | |
| 78 | } |
| 79 | func (variable *listFlag) Set(value string) error { |
| 80 | variable.elements = append(variable.elements, value) |
| 81 | return nil |
no outgoing calls
no test coverage detected