diff --git a/cmd/test/main.go b/cmd/test/main.go deleted file mode 100644 index f387c25..0000000 --- a/cmd/test/main.go +++ /dev/null @@ -1,28 +0,0 @@ -package main - -import ( - "fmt" - "time" - - "go.arsenm.dev/itd/api" -) - -func main() { - itd, _ := api.New(api.DefaultAddr) - defer itd.Close() - - fmt.Println(itd.Address()) - - mCh, cancel, _ := itd.WatchMotion() - - go func() { - time.Sleep(10 * time.Second) - cancel() - fmt.Println("canceled") - }() - - for m := range mCh { - fmt.Println(m) - } - -} diff --git a/test b/test deleted file mode 100755 index 831c240..0000000 Binary files a/test and /dev/null differ