package cmd import ( "github.com/spf13/cobra" ) var ewwCmd = &cobra.Command{ Use: "eww", Short: "eww integration", } func init() { rootCmd.AddCommand(ewwCmd) }