2022-01-03 20:56:40 +01:00
|
|
|
"""The SNCF integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
|
|
# For your initial PR, limit it to 1 platform.
|
2022-01-03 21:14:02 +01:00
|
|
|
PLATFORMS: list[str] = ["sensor"]
|
2022-01-03 20:56:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
|
|
"""Set up SNCF from a config entry."""
|
|
|
|
# TODO Store an API object for your platforms to access
|
|
|
|
# hass.data[DOMAIN][entry.entry_id] = MyApi(...)
|
|
|
|
|
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
|
|
"""Unload a config entry."""
|
|
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
|
|
if unload_ok:
|
|
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
|
|
|
|
return unload_ok
|