Files
2026-02-04 12:15:23 +00:00

15 lines
383 B
Python

"""Support for Telegram bot to send messages only."""
from telegram import Bot
from homeassistant.core import HomeAssistant
from .bot import BaseTelegramBot, TelegramBotConfigEntry
async def async_setup_bot_platform(
hass: HomeAssistant, bot: Bot, config: TelegramBotConfigEntry
) -> BaseTelegramBot | None:
"""Set up the Telegram broadcast platform."""
return None