28 lines
870 B
Python
28 lines
870 B
Python
"""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.
|
|
PLATFORMS: list[str] = ["sensor"]
|
|
|
|
|
|
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
|