gfdm-server/v8_server/utils/eamuse.py
2021-01-15 11:20:16 -06:00

9 lines
156 B
Python

from time import time
def get_timestamp() -> str:
"""
Make a timestamp int for logging purposes
"""
return str(int(round(time() * 1000)))