mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-10-28 17:52:02 +08:00
13 lines
167 B
Go
13 lines
167 B
Go
package goconv
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func UnixGRPC2Go(unixNano int64) time.Time {
|
|
return time.Unix(
|
|
unixNano/int64(time.Second),
|
|
unixNano%int64(time.Second),
|
|
)
|
|
}
|