2025-02-22 12:50:26 +08:00

8 lines
84 B
Go

package timeutils
import "time"
func Now() time.Time {
return time.Now().UTC()
}