summaryrefslogtreecommitdiff
path: root/go/gigasecond/gigasecond.go
blob: dd3f3101ea012e3690fbe14d32ac34ce710cec20 (plain)
1
2
3
4
5
6
7
8
9
package gigasecond

import "time"

const testVersion = 4

func AddGigasecond(t time.Time) time.Time {
	return t.Add(1e9 * time.Second)
}