(name string, required bool)
| 60 | } |
| 61 | |
| 62 | func (o *PluginBase) AddSetupQuestion(name string, required bool) (ret *SetupQuestion) { |
| 63 | return o.AddSetupQuestionCustom(name, required, "") |
| 64 | } |
| 65 | |
| 66 | func (o *PluginBase) AddSetupQuestionCustom(name string, required bool, question string) (ret *SetupQuestion) { |
| 67 | setting := o.AddSetting(name, required) |
no test coverage detected