4 lines
78 B
Python
4 lines
78 B
Python
from time import time
|
|
|
|
def cur_timestamp_ms():
|
|
return int((time() * 1000)) |