mirror of
https://github.com/home-assistant/core.git
synced 2026-08-15 09:42:50 +01:00
11 lines
182 B
Python
11 lines
182 B
Python
"""Consts used by Tradfri."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_GATEWAY_ID = "gateway_id"
|
|
CONF_IDENTITY = "identity"
|
|
CONF_KEY = "key"
|
|
DOMAIN = "tradfri"
|