*


// 定时器
func TimeTicker()  {

	tick := time.NewTicker(time.Second * 5)
	for range tick.C {
		fmt.Println("hello --")
	}

}