(config *configv3.Config)
| 44 | } |
| 45 | |
| 46 | func NewCommandParser(config *configv3.Config) (CommandParser, error) { |
| 47 | return CommandParser{Config: config}, nil |
| 48 | } |
| 49 | |
| 50 | func (p *CommandParser) ParseCommandFromArgs(ui *ui.UI, args []string) (int, error) { |
| 51 | p.UI = ui |
no outgoing calls
no test coverage detected