mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-07-09 21:24:43 -05:00
9 lines
156 B
Python
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)))
|