7 lines
84 B
Go
7 lines
84 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
func NowUTC() time.Time {
|
|
return time.Now().UTC()
|
|
}
|