hass-core/homeassistant/components/igd/const.py

14 lines
331 B
Python
Raw Normal View History

2018-08-17 21:28:29 +02:00
"""Constants for the IGD component."""
import logging
2018-09-01 21:20:15 +02:00
2018-08-30 16:38:43 +02:00
CONF_ENABLE_PORT_MAPPING = 'port_forward'
CONF_ENABLE_SENSORS = 'sensors'
2018-09-08 00:11:23 +02:00
CONF_HASS = 'hass'
CONF_LOCAL_IP = 'local_ip'
CONF_PORTS = 'ports'
2018-09-01 21:20:15 +02:00
CONF_SSDP_DESCRIPTION = 'ssdp_description'
2018-09-08 00:11:23 +02:00
CONF_UDN = 'udn'
DOMAIN = 'igd'
LOGGER = logging.getLogger('homeassistant.components.igd')