mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-07-16 00:15:34 -05:00
6 lines
94 B
Python
6 lines
94 B
Python
from time import time
|
|
|
|
|
|
def get_timestamp() -> str:
|
|
return str(int(round(time() * 1000)))
|