I need to get the current time in different time-zones.
Currently I know that we can do the following:
t := time.Now() fmt.Println(\"Location:\", t.Loca
//init the loc loc, _ := time.LoadLocation("Asia/Shanghai") //set timezone, now := time.Now().In(loc)