1 """The Music Player Daemon integration."""
3 from __future__
import annotations
9 PLATFORMS: list[Platform] = [Platform.MEDIA_PLAYER]
13 """Set up Music Player Daemon from a config entry."""
15 await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
21 """Unload a config entry."""
22 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)