mirror of
https://github.com/home-assistant/core.git
synced 2025-05-07 23:49:17 +00:00

* Use relative imports inside integrations * Lint * Fix automation tests * Fix scene imports
12 lines
226 B
Python
12 lines
226 B
Python
"""Constants for the UniFi component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger('.')
|
|
DOMAIN = 'unifi'
|
|
|
|
CONTROLLER_ID = '{host}-{site}'
|
|
|
|
CONF_CONTROLLER = 'controller'
|
|
CONF_POE_CONTROL = 'poe_control'
|
|
CONF_SITE_ID = 'site'
|