11 lines
244 B
Python
11 lines
244 B
Python
|
"""Constants for the Matter integration."""
|
||
|
import logging
|
||
|
|
||
|
ADDON_SLUG = "core_matter_server"
|
||
|
|
||
|
CONF_INTEGRATION_CREATED_ADDON = "integration_created_addon"
|
||
|
CONF_USE_ADDON = "use_addon"
|
||
|
|
||
|
DOMAIN = "matter"
|
||
|
LOGGER = logging.getLogger(__package__)
|