(fs *flag.FlagSet)
| 12 | } |
| 13 | |
| 14 | func (e *extFlag) Apply(fs *flag.FlagSet) error { |
| 15 | fs.Var(e.f.Value, e.f.Name, e.f.Usage) |
| 16 | return nil |
| 17 | } |
| 18 | |
| 19 | func (e *extFlag) Names() []string { |
| 20 | return []string{e.f.Name} |
no outgoing calls
no test coverage detected