Spaces:
Paused
Paused
File size: 200 Bytes
4a2ab42 | 1 2 3 4 5 6 7 8 9 10 | from datetime import UTC, datetime
def utc_now():
return datetime.now(UTC)
# Note: Models moved to core/database.py to avoid duplication
# These models are already defined in core/database.py
|