1 """The Recovery Mode integration."""
8 DOMAIN =
"recovery_mode"
10 CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
13 async
def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
14 """Set up the Recovery Mode component."""
15 persistent_notification.async_create(
18 "Home Assistant is running in recovery mode. Check [the error"
19 " log](/config/logs) to see what went wrong."
bool async_setup(HomeAssistant hass, ConfigType config)