first commit

This commit is contained in:
w4nn4d13
2026-04-06 13:37:26 +05:30
commit 065eae9134
52 changed files with 1918 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from __future__ import annotations
from datetime import datetime, timezone
ISO_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ"
def utc_now_iso() -> str:
"""Return a UTC timestamp in ISO-8601 format."""
return datetime.now(tz=timezone.utc).strftime(ISO_FORMAT)