| 11 | ) |
| 12 | |
| 13 | type Flag struct { |
| 14 | Name string |
| 15 | LongForm string |
| 16 | ShortForm string |
| 17 | Help string |
| 18 | IsRequired bool |
| 19 | AlwaysPrompt bool |
| 20 | AlsoKnownAs []string |
| 21 | } |
| 22 | |
| 23 | func (f Flag) GetName() string { |
| 24 | return f.Name |
nothing calls this directly
no outgoing calls
no test coverage detected