1package jose
2
3import "time"
4
5// Now returns the current time in UTC.
6func Now() time.Time { return time.Now().UTC() }
7