diff --git a/cmd/bus.go b/cmd/bus.go index 38ac646..1b89391 100644 --- a/cmd/bus.go +++ b/cmd/bus.go @@ -12,13 +12,8 @@ import ( // busCmd represents the bus command var busCmd = &cobra.Command{ Use: "bus", - Short: "A brief description of your command", - Long: `A longer description that spans multiple lines and likely contains examples -and usage of using your command. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "Commands to control individual buses", + Long: `Commands to control individual buses of the XAir mixer, including mute status.`, Run: func(cmd *cobra.Command, args []string) { fmt.Println("bus called") }, diff --git a/cmd/strip.go b/cmd/strip.go index c42fdd7..fa6d1d5 100644 --- a/cmd/strip.go +++ b/cmd/strip.go @@ -12,13 +12,8 @@ import ( // stripCmd represents the strip command var stripCmd = &cobra.Command{ Use: "strip", - Short: "A brief description of your command", - Long: `A longer description that spans multiple lines and likely contains examples -and usage of using your command. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "Commands to control individual strips", + Long: `Commands to control individual strips of the XAir mixer, including fader level and mute status.`, Run: func(cmd *cobra.Command, args []string) { fmt.Println("strip called") },