d766aae436
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: frenck <[email protected]>
25 lines
849 B
Python
25 lines
849 B
Python
"""The Tailscale integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .coordinator import TailscaleConfigEntry, TailscaleDataUpdateCoordinator
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: TailscaleConfigEntry) -> bool:
|
|
"""Set up Tailscale from a config entry."""
|
|
coordinator = TailscaleDataUpdateCoordinator(hass, entry)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
entry.runtime_data = coordinator
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: TailscaleConfigEntry) -> bool:
|
|
"""Unload Tailscale config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|