File size: 244 Bytes
820c4b2
 
 
 
 
 
a71dd82
 
 
820c4b2
1
2
3
4
5
6
7
8
9
10
11
"""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()