Beispiel #1
0
//get time.Time form uuid code
func getTime(uucode uuid.UUID) time.Time {
	ut, _ := uucode.Time()
	s, n := ut.UnixTime()
	return time.Unix(s, n)
}