mirror of
https://github.com/home-assistant/core.git
synced 2025-05-08 07:59:18 +00:00
8 lines
214 B
Python
8 lines
214 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)
|