1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-16 11:59:16 +00:00

11 lines
256 B
Python

"""Provide common constants for Open Exchange Rates."""
from datetime import timedelta
import logging
DOMAIN = "openexchangerates"
LOGGER = logging.getLogger(__package__)
BASE_UPDATE_INTERVAL = timedelta(hours=2)
CLIENT_TIMEOUT = 10
DEFAULT_BASE = "USD"