7 lines
177 B
Python
7 lines
177 B
Python
|
"""Constants for the Hue component."""
|
||
|
import logging
|
||
|
|
||
|
LOGGER = logging.getLogger('homeassistant.components.hue')
|
||
|
DOMAIN = "hue"
|
||
|
API_NUPNP = 'https://www.meethue.com/api/nupnp'
|