mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
10 lines
183 B
Python
10 lines
183 B
Python
"""Datetime utilities."""
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
|
def utc_now() -> datetime:
|
|
"""Return a timezone-aware UTC datetime."""
|
|
return datetime.now(timezone.utc)
|
|
|