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

19 lines
330 B
Go

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