8 lines
160 B
Python
8 lines
160 B
Python
from __future__ import annotations
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
|
def current_timestamp() -> str:
|
|
return datetime.now(timezone.utc).isoformat()
|