1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-27 22:34:47 +00:00
Files
core/homeassistant/components/mastodon/const.py
2022-12-21 02:32:29 +01:00

10 lines
207 B
Python

"""Constants for the Mastodon integration."""
import logging
from typing import Final
LOGGER = logging.getLogger(__name__)
CONF_BASE_URL: Final = "base_url"
DEFAULT_URL: Final = "https://mastodon.social"