mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 14:02:21 +00:00
8 lines
117 B
Go
8 lines
117 B
Go
|
package utils
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
func MakeTimestamp() int64 {
|
||
|
return time.Now().UnixNano() / int64(time.Millisecond)
|
||
|
}
|