Add shared timestamp utility
CI / python (push) Has been cancelled
CI / rust (push) Has been cancelled

This commit is contained in:
2026-05-17 22:40:37 +03:00
parent c979428d90
commit 8db3225359
3 changed files with 11 additions and 14 deletions
@@ -0,0 +1,7 @@
from __future__ import annotations
from datetime import datetime, timezone
def current_timestamp() -> str:
return datetime.now(timezone.utc).isoformat()