tickerPing := time.NewTicker(time.Second * 1) for { select { case <-tickerPing.C: fmt.Println("tickerPing") } }