1 """The Google Translate text-to-speech integration."""
3 from __future__
import annotations
9 PLATFORMS: list[Platform] = [Platform.TTS]
13 """Set up Google Translate text-to-speech from a config entry."""
14 await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
20 """Unload a config entry."""
21 return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
bool async_setup_entry(HomeAssistant hass, ConfigEntry entry)
bool async_unload_entry(HomeAssistant hass, ConfigEntry entry)