2021-09-16 18:33:39 +02:00

8 lines
140 B
Python

from time import time
def now_timestamp() -> int:
"""Return current timestamp in milliseconds (ms)."""
return int(time() * 1000)