|
"""Constants for the emoncms integration."""
|
|
|
|
import logging
|
|
|
|
CONF_EXCLUDE_FEEDID = "exclude_feed_id"
|
|
CONF_ONLY_INCLUDE_FEEDID = "include_only_feed_id"
|
|
CONF_MESSAGE = "message"
|
|
CONF_SUCCESS = "success"
|
|
DOMAIN = "emoncms"
|
|
|
|
|
|
LOGGER = logging.getLogger(__package__)
|