mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 06:39:46 +08:00
14 lines
314 B
Go
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)
|
|
}
|