(value flag.Value, name string, usage string)
| 8 | // flagInterface is a cut down interface to `flag` |
| 9 | type flagInterface interface { |
| 10 | Var(value flag.Value, name string, usage string) |
| 11 | } |
| 12 | |
| 13 | // StringArrayFlag defines a flag with the specified name and usage string. |