Files
B.Tech-Project-III/thirdeye/run_bot.py
2026-04-05 00:43:23 +05:30

10 lines
198 B
Python

"""Entry point to run the ThirdEye Telegram bot."""
import sys
import os
sys.path.insert(0, os.path.dirname(__file__))
from backend.bot.bot import run_bot
if __name__ == "__main__":
run_bot()