Home Assistant Unofficial Reference 2024.12.1
__init__.py
Go to the documentation of this file.
1 """The Rhasspy integration."""
2 
3 from __future__ import annotations
4 
5 from homeassistant.config_entries import ConfigEntry
6 from homeassistant.core import HomeAssistant
7 
8 
9 async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
10  """Set up Rhasspy from a config entry."""
11  return True
12 
13 
14 async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
15  """Unload a config entry."""
16  return True
bool async_setup_entry(HomeAssistant hass, ConfigEntry entry)
Definition: __init__.py:9
bool async_unload_entry(HomeAssistant hass, ConfigEntry entry)
Definition: __init__.py:14