package time import "time" func ParseTime(timeString string) (time.Time, error) { return time.Parse("2006-01-02T15:04:05Z", timeString) }