This commit is contained in:
2025-09-08 16:35:58 +08:00
parent 037146660d
commit a078c2f4d8

View File

@@ -0,0 +1,6 @@
from datetime import datetime
def get_timestamp() -> int:
dt_millis = int(datetime.now().timestamp() * 1000)
return dt_millis