- """PJLink2 Custom Component."""
- from __future__ import annotations
- import logging
- from homeassistant.core import HomeAssistant
- from homeassistant.helpers.typing import ConfigType
- async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
- """Set up the PJLink2 component."""
- return True
|