add USB conn support explicitly

This commit is contained in:
2023-01-13 16:18:38 -08:00
parent ed8cf8cb95
commit 810a431a8e
2 changed files with 9 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ var (
ErrStdoutEmpty = errors.New("stdout expected to contain data but was empty")
ErrNotInstalled = errors.New("adb is not installed or not in PATH")
ErrCoordinatesNotFound = errors.New("coordinates for an input event are missing")
ErrConnUSB = errors.New("cannot call connect to device using USB")
ErrConnUSB = errors.New("cannot call connect/disconnect to device using USB")
ErrResolutionParseFail = errors.New("failed to parse screen size from input text")
ErrUnspecified = errors.New("an unknown error has occurred, please open an issue on GitHub")
)