1. interact.ReadLine 是否新增**必填**选项 2. interact.SelectOne ```golang SelectOne(title string, options interface{}, defOpt string, allowQuit ...bool) ``` 既然默认值已经是`string`,那`options`的`interface`是否能够确认类型, 好像`defOpt`只能是字符串下标  这种可能想要的只是`bool` 参考 [promptui](https://github.com/manifoldco/promptui)
interact.ReadLine 是否新增必填选项
interact.SelectOne
既然默认值已经是
string,那options的interface是否能够确认类型,好像
defOpt只能是字符串下标这种可能想要的只是
bool参考 promptui