Files
Javier Martinez 183cd03857 feat!: PrivateGPT revamp v1 (#2230)
* feat!: PrivateGPT revamp v1

* chore(docs): update nodejs
2026-06-02 16:55:46 +02:00

9 lines
182 B
Python

"""Provide context clock utilities."""
from datetime import UTC, datetime
def utc_now() -> datetime:
"""Return an aware current UTC timestamp."""
return datetime.now(UTC)