I2P string format

This commit is contained in:
Hayden Parker
2016-02-04 00:54:51 -08:00
parent 7e32bd2458
commit e6cc4425c6
11 changed files with 76 additions and 17 deletions

View File

@ -7,6 +7,6 @@ import (
type Date [8]byte
func GoDate(date Date) time.Time {
seconds := Integer(date[:]...)
seconds := Integer(date[:])
return time.Unix(0, int64(seconds*1000000))
}