now.py 152 B

123456
  1. from datetime import datetime, timezone
  2. def now():
  3. # this function is there so that we can mock it in tests
  4. return datetime.now(timezone.utc)