This commit is contained in:
shoopea 2019-05-04 12:30:02 +08:00
parent 5ea01ae0b3
commit 0ec5737337

View File

@ -118,6 +118,12 @@ func main() {
fmt.Println("Started !")
go ListenCW(client)
log.Println("Forever.")
// Main loop
for {
time.Sleep(1 * time.Second)
log.Println("Alive.")
}
forever := make(chan bool)
<-forever
}