mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
12 lines
202 B
Python
12 lines
202 B
Python
import time as t
|
|
from time import time
|
|
|
|
def cur_timestamp_ms():
|
|
return int((time() * 1000))
|
|
|
|
def cur_timestamp_seconds():
|
|
return int(time())
|
|
|
|
def get_unix_in_seconds():
|
|
return int(t.time())
|