From 3118370206e69bc76c6583c61489eb555c00f9c0 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 31 Jan 2026 01:31:08 +0000 Subject: [PATCH] upd docstrings --- cmd/bus.go | 9 ++------- cmd/strip.go | 9 ++------- 2 files changed, 4 insertions(+), 14 deletions(-) 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") },