18 lines
489 B
Python
18 lines
489 B
Python
from __future__ import annotations
|
|
|
|
# NOTE:
|
|
# Update entities will be implemented once installation/provider resolution is in place.
|
|
# This stub prevents platform load errors and keeps the integration stable in 0.3.0.
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info=None,
|
|
):
|
|
return
|