Add support for boolean extended options

This commit is contained in:
Nick Douma 2020-11-11 11:48:42 +01:00
parent 407843c5f9
commit 4ddcc17135
1 changed files with 8 additions and 0 deletions

View File

@ -199,6 +199,14 @@ func (o Options) Apply(ns string, dst interface{}) error {
v.Field(i).SetUint(vi)
case "bool":
vi, err := strconv.ParseBool(value)
if err != nil {
return err
}
v.Field(i).SetBool(vi)
case "Duration":
d, err := time.ParseDuration(value)
if err != nil {