6 lines
82 B
Python
6 lines
82 B
Python
|
from time import time
|
||
|
|
||
|
|
||
|
def now_timestamp() -> int:
|
||
|
return int(time() * 1000)
|