mirror of
https://github.com/hamburghammer/grcon.git
synced 2024-12-23 13:37:43 +01:00
13 lines
268 B
Go
13 lines
268 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/hamburghammer/grcon"
|
||
|
)
|
||
|
|
||
|
// GenerateRequestId is a convenience function to generate an id using the current time.
|
||
|
func GenerateRequestId() grcon.PacketId {
|
||
|
return grcon.PacketId((time.Now().UnixNano() / 100000) % 100000)
|
||
|
}
|