Spaces:
Sleeping
Sleeping
| import uuid | |
| from datetime import datetime, timezone | |
| def new_uuid() -> str: | |
| return str(uuid.uuid4()) | |
| def utcnow() -> datetime: | |
| return datetime.now(timezone.utc) | |
| def iso_now() -> str: | |
| return utcnow().isoformat() | |