golang time in different timezones

Developer from somewhere

import "time"

// to get the current time in utc, iso8601
location, err := time.LoadLocation("Etc/UTC")
now := time.Now()
fmt.Println(now.In(location).Format(time.RFC3339)