feat: print ios devices

This commit is contained in:
debugtalk
2022-10-01 14:48:29 +08:00
parent ed3d4c4f0d
commit a3b0eaf1c5
3 changed files with 149 additions and 0 deletions

13
hrp/cmd/ios/init.go Normal file
View File

@@ -0,0 +1,13 @@
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)
}