mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-14 12:00:05 +00:00
10 lines
103 B
Go
10 lines
103 B
Go
|
package protocol
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func GetTime() uint64 {
|
||
|
return uint64(time.Now().UnixMilli())
|
||
|
}
|