__init__.py 309 B

12345678910
  1. """PJLink2 Custom Component."""
  2. from __future__ import annotations
  3. import logging
  4. from homeassistant.core import HomeAssistant
  5. from homeassistant.helpers.typing import ConfigType
  6. async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
  7. """Set up the PJLink2 component."""
  8. return True