Improve command loading

This commit is contained in:
2021-02-16 23:24:32 -06:00
parent dd0bf763a3
commit c9e4d9af80
11 changed files with 251 additions and 190 deletions

View File

@ -1,11 +1,29 @@
package lumecmd
import (
"flag"
"fmt"
)
const Tabstop int = 2
func NewCmdShow() Command {
return Command{
Name: "show",
Func: ShowCmd,
Flags: func() *flag.FlagSet {
fs := flag.NewFlagSet("show", flag.ExitOnError)
selector := fs.String("selector", defaultSelector, "Set the selector")
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
return fs
}(),
Use: "[--selector=<selector>]",
Short: "Show details about the lights",
}
}
func ShowCmd(args CmdArgs) (int, error) {
var indent int
c := args.Client