27 lines
388 B
Go
27 lines
388 B
Go
package rgbled
|
|
|
|
import (
|
|
"github.com/Masterminds/semver"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
configFile *string
|
|
|
|
version *semver.Version
|
|
)
|
|
|
|
var rgbLedCmd = &cobra.Command{
|
|
Use: "rgb-led",
|
|
Short: "Manage RGB-LEDs",
|
|
}
|
|
|
|
// InitCmd da
|
|
func InitCmd(cmd *cobra.Command, cnfFile *string, sversion *semver.Version) {
|
|
configFile = cnfFile
|
|
version = sversion
|
|
|
|
cmd.AddCommand(rgbLedCmd)
|
|
|
|
}
|