refactor: remove unused const and var to pass staticcheck

- Remove unused 'killed' const in util.go
- Remove unused 'command' var in examples/injection/main.go
This commit is contained in:
2026-02-23 18:07:29 +00:00
parent 2a47181ccf
commit 2b1116d920
2 changed files with 0 additions and 9 deletions

View File

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