mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-05 23:43:05 +00:00
8 lines
124 B
Go
8 lines
124 B
Go
package utils
|
|
|
|
import "time"
|
|
|
|
func GetUnixEpoch() float64 {
|
|
return float64(time.Now().UnixNano()) / float64(time.Second)
|
|
}
|