Files
httprunner/hrp/cmd/adb/init.go
2022-10-02 00:00:59 +08:00

14 lines
314 B
Go

package adb
import "github.com/spf13/cobra"
var androidRootCmd = &cobra.Command{
Use: "adb",
Short: "simple utils for android device management",
PersistentPreRun: func(cmd *cobra.Command, args []string) {},
}
func Init(rootCmd *cobra.Command) {
rootCmd.AddCommand(androidRootCmd)
}