4 lines
65 B
Python
4 lines
65 B
Python
|
import time
|
||
|
|
||
|
def get_unix_time() -> float:
|
||
|
return time.time()
|