nolint:deadcode,unused
(name string, value time.Duration, usage string)
| 32 | |
| 33 | //nolint:deadcode,unused |
| 34 | func durationFlag(name string, value time.Duration, usage string) cli.DurationFlag { |
| 35 | return cli.DurationFlag{ |
| 36 | Name: name, |
| 37 | Value: value, |
| 38 | Usage: usage, |
| 39 | } |
| 40 | } |