lume/cmd/toggle.go

33 lines
701 B
Go
Raw Normal View History

2020-03-27 00:05:50 +00:00
package lumecmd
import (
"flag"
"fmt"
)
func init() {
fs := flag.NewFlagSet("toggle", flag.ExitOnError)
2020-03-27 03:00:16 +00:00
duration := fs.Float64("duration", 1.0, "Set the duration")
fs.Float64Var(duration, "d", 1.0, "Set the duration")
selector := fs.String("selector", "all", "Set the selector")
fs.StringVar(selector, "s", "all", "Set the selector")
2020-03-27 00:05:50 +00:00
RegisterCommand("toggle", Command{
Func: ToggleCmd,
Flags: fs,
})
}
func ToggleCmd(args CmdArgs) int {
c := args.Client
duration := args.Flags.Float64("duration")
selector := args.Flags.String("selector")
r, err := c.Toggle(selector, duration)
if err != nil {
2020-03-28 00:31:12 +00:00
fmt.Printf("fatal: %s\n", err)
2020-03-27 00:05:50 +00:00
return 1
}
2020-03-27 07:01:14 +00:00
PrintResults(r.Results)
2020-03-27 00:05:50 +00:00
return 0
}