mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 05:22:44 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
10 lines
231 B
Python
10 lines
231 B
Python
"""Constants for the Remember The Milk integration."""
|
|
|
|
import logging
|
|
|
|
CONF_LIST_ID = "list_id"
|
|
CONF_SHARED_SECRET = "shared_secret"
|
|
DOMAIN = "remember_the_milk"
|
|
LOGGER = logging.getLogger(__package__)
|
|
SUBENTRY_TYPE_LIST = "list"
|