Dmitry Beresnev
Add Telegram bot control interface for HuggingFace Spaces deployment
820c4b2
Raw
History Blame Contribute Delete
244 Bytes
"""HuggingFace Spaces entrypoint: Telegram bot webhook server + platform loop.
For the headless polling loop without the bot, run `python -m src.core.main`.
"""
from src.telegram_bot.server import main
if __name__ == "__main__":
main()