package spacepanel_aggregator import ( "fmt" "time" ) func Poll(url string) { for true { fmt.Println("Polling", url) time.Sleep(sleeptime) } }