mirror of
https://github.com/CPunch/gopenfusion.git
synced 2025-07-05 10:51:04 +00:00
- WaitWithTimeout && SelectWithTimeout have been moved to internal/testutil - GetTime has been moved to cnet/protocol
10 lines
103 B
Go
10 lines
103 B
Go
package protocol
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func GetTime() uint64 {
|
|
return uint64(time.Now().UnixMilli())
|
|
}
|