mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
6 lines
112 B
Python
6 lines
112 B
Python
|
import datetime
|
||
|
|
||
|
|
||
|
def get_timestamp():
|
||
|
return int(datetime.datetime.now(datetime.timezone.utc).timestamp())
|