Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 78c3206

Browse files
committedDec 28, 2024·
use Gettimeofday in just linux and darwin
1 parent 45f2ba0 commit 78c3206

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
 

‎utils/time.go ‎utils/now.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build linux || darwin
2+
13
package utils
24

35
import (

‎utils/now2.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//go:build !linux && !darwin
2+
3+
package utils
4+
5+
import "time"
6+
7+
var Now = time.Now

0 commit comments

Comments
 (0)
Please sign in to comment.