(name, usage string)
| 15 | } |
| 16 | |
| 17 | func boolFlag(name, usage string) cli.BoolFlag { |
| 18 | return cli.BoolFlag{ |
| 19 | Name: name, |
| 20 | Usage: usage, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | //nolint:deadcode,unused |
| 25 | func intFlag(name string, value int, usage string) cli.IntFlag { |
no outgoing calls
no test coverage detected