Files
go-i2p/lib/common/date.go
Hayden Parker f5e806dd14 date test
2016-02-04 01:14:49 -08:00

13 lines
167 B
Go

package common
import (
"time"
)
type Date [8]byte
func (date Date) Time() time.Time {
seconds := Integer(date[:])
return time.Unix(0, int64(seconds*1000000))
}