10 lines
207 B
Python
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"
|