1 """Constants for the Mastodon integration."""
4 from typing
import Final
6 LOGGER = logging.getLogger(__name__)
8 DOMAIN: Final =
"mastodon"
10 CONF_BASE_URL: Final =
"base_url"
11 DATA_HASS_CONFIG =
"mastodon_hass_config"
12 DEFAULT_URL: Final =
"https://mastodon.social"
13 DEFAULT_NAME: Final =
"Mastodon"
15 INSTANCE_VERSION: Final =
"version"
16 INSTANCE_URI: Final =
"uri"
17 INSTANCE_DOMAIN: Final =
"domain"
18 ACCOUNT_USERNAME: Final =
"username"
19 ACCOUNT_FOLLOWERS_COUNT: Final =
"followers_count"
20 ACCOUNT_FOLLOWING_COUNT: Final =
"following_count"
21 ACCOUNT_STATUSES_COUNT: Final =
"statuses_count"