21 lines
418 B
Go
21 lines
418 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var cliCmd = &cobra.Command{
|
|
Use: "cli",
|
|
Short: "Get information, update or configure the Home Assistant cli backend",
|
|
Long: `
|
|
The cli command allows you to manage the internal Home Assistant CLI backend by
|
|
exposing commands to view, monitor, configure and control it.`,
|
|
Example: `
|
|
ha cli info
|
|
ha cli update`,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(cliCmd)
|
|
}
|