예제 #1
0
파일: account.go 프로젝트: jango2015/OJ
//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)
}