2024-03-11 19:32:42 +01:00

21 lines
374 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var devicesCmd = &cobra.Command{
Use: "devices",
Short: "list connected devices",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(devicesCmd).Standalone()
devicesCmd.Flags().BoolS("l", "l", false, "long output")
rootCmd.AddCommand(devicesCmd)
}