refactor: move gwda into uixt

This commit is contained in:
debugtalk
2022-09-23 22:39:43 +08:00
parent e3d0eccde5
commit 8925b595fc
25 changed files with 4475 additions and 248 deletions

View File

@@ -0,0 +1,15 @@
package uixt
type AndroidDevice struct {
SerialNumber string `json:"serial,omitempty" yaml:"serial,omitempty"`
Port int `json:"port,omitempty" yaml:"port,omitempty"`
LogOn bool `json:"log_on,omitempty" yaml:"log_on,omitempty"`
}
func (o AndroidDevice) UUID() string {
return o.SerialNumber
}
func InitUIAClient(device *AndroidDevice) (*DriverExt, error) {
return nil, nil
}