mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +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)
|
|
}
|