(name string, value interface{})
| 12 | } |
| 13 | |
| 14 | func (my *StringSlice) WriteAnswer(name string, value interface{}) error { |
| 15 | my.value = utils.StringToSlice(value.(string)) |
| 16 | return nil |
| 17 | } |
| 18 | |
| 19 | func AskCommaSeparatedInputQuestion( |
| 20 | message string, |
nothing calls this directly
no test coverage detected