forked from Elara6331/itd
Remove test
This commit is contained in:
parent
32cab6d00f
commit
45621a98d5
@ -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)
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user