core/homeassistant/components/habitica/const.py

18 lines
369 B
Python
Raw Normal View History

"""Constants for the habitica integration."""
from homeassistant.const import CONF_PATH
CONF_API_USER = "api_user"
DEFAULT_URL = "https://habitica.com"
DOMAIN = "habitica"
2021-06-26 22:36:45 +00:00
# service constants
SERVICE_API_CALL = "api_call"
ATTR_PATH = CONF_PATH
ATTR_ARGS = "args"
2021-06-26 22:36:45 +00:00
# event constants
EVENT_API_CALL_SUCCESS = f"{DOMAIN}_{SERVICE_API_CALL}_success"
2021-06-26 22:36:45 +00:00
ATTR_DATA = "data"