in progress on capture implementation

This commit is contained in:
2022-07-17 23:31:58 -07:00
parent 21240911e3
commit 674b639850
3 changed files with 45 additions and 0 deletions

9
errors.go Normal file
View File

@@ -0,0 +1,9 @@
package adb
import (
"errors"
)
// When an execution should have data but has none, but the exact error is
// indeterminite, this error is returned
var ErrStdoutEmpty = errors.New("stdout expected to contain data but was empty")