mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-02 06:19:34 +08:00
13 lines
229 B
Go
13 lines
229 B
Go
package adb
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var androidRootCmd = &cobra.Command{
|
|
Use: "adb",
|
|
Short: "simple utils for android device management",
|
|
}
|
|
|
|
func Init(rootCmd *cobra.Command) {
|
|
rootCmd.AddCommand(androidRootCmd)
|
|
}
|