(description, question, defaultValue string)
| 210 | } |
| 211 | |
| 212 | func (c *Command) askQuestion(description, question, defaultValue string) string { |
| 213 | if conv.B(c.commandFlags.Default) { |
| 214 | console.DetailWithResource(question, defaultValue) |
| 215 | return defaultValue |
| 216 | } |
| 217 | |
| 218 | return console.AskQuestionWithNote(question, defaultValue, description) |
| 219 | } |
no outgoing calls
no test coverage detected