8 lines
140 B
Python
8 lines
140 B
Python
from time import time
|
|
|
|
|
|
def now_timestamp() -> int:
|
|
"""Return current timestamp in milliseconds (ms)."""
|
|
|
|
return int(time() * 1000)
|