6 lines
82 B
Python
Raw Normal View History

2021-09-08 16:17:37 +02:00
from time import time
def now_timestamp() -> int:
return int(time() * 1000)