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

19 lines
306 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var usbCmd = &cobra.Command{
Use: "usb",
Short: "restart adbd listening on USB",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(usbCmd).Standalone()
rootCmd.AddCommand(usbCmd)
}