(name string, required bool)
| 84 | } |
| 85 | |
| 86 | func (o *PluginBase) AddSetupQuestionBool(name string, required bool) (ret *SetupQuestion) { |
| 87 | return o.AddSetupQuestionCustomBool(name, required, "") |
| 88 | } |
| 89 | |
| 90 | func (o *PluginBase) AddSetupQuestionCustomBool(name string, required bool, question string) (ret *SetupQuestion) { |
| 91 | setting := o.AddSetting(name, required) |
nothing calls this directly
no test coverage detected