mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 11:32:38 +02:00
5 lines
94 B
Python
5 lines
94 B
Python
from datetime import datetime, timezone
|
|
|
|
|
|
def utcnow():
|
|
return datetime.now(timezone.utc)
|