mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-17 17:07:34 +08:00
14 lines
302 B
Go
14 lines
302 B
Go
package ios
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var iosRootCmd = &cobra.Command{
|
|
Use: "ios",
|
|
Short: "simple utils for ios device management",
|
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func Init(rootCmd *cobra.Command) {
|
|
rootCmd.AddCommand(iosRootCmd)
|
|
}
|