You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package main
import ( "fmt" "strconv" "time" )
func waitTime(minutes int) { //wait to avoid the twitter api limitation
timeToSleep := time.Duration(minutes) * time.Minute fmt.Println("waiting " + strconv.Itoa(minutes) + " min to avoid twitter api limitation") fmt.Println(time.Now().Local()) time.Sleep(timeToSleep) }
|