Fix blunder

This commit is contained in:
Alessio 2022-03-06 18:17:00 -08:00
parent 78a5ffbf92
commit 40e585e1a6

View File

@ -36,5 +36,5 @@ func TimestampFromString(s string) (Timestamp, error) {
}
func TimestampFromUnix(num int64) Timestamp {
return Timestamp{time.Unix(10000000, 0)}
return Timestamp{time.Unix(num, 0)}
}