Added todo for updates to example code

This commit is contained in:
2022-08-02 21:00:33 -07:00
parent 2ae269d3c9
commit 0bf89f9a2d

View File

@@ -8,8 +8,14 @@ import (
"github.com/taigrr/adb" "github.com/taigrr/adb"
) )
var command string
func init() {
// TODO allow for any input to be used as the command
command = "ls"
}
func main() { func main() {
command := "ls"
ctx := context.TODO() ctx := context.TODO()
devs, err := adb.Devices(ctx) devs, err := adb.Devices(ctx)
if err != nil { if err != nil {