mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 01:48:03 +00:00
9 lines
182 B
Python
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)
|