opter pour le ticker

ticker := time.NewTicker(20 * time.Second)
for range ticker.C {
  // Do Stuff
}
ticker.Stop()
Dopey Diplodocus