"""Entry point to run the bot from project root."""

import asyncio

def main():
    """Run the bot."""
    # Add bot directory to path for imports
    import sys
    from pathlib import Path
    sys.path.insert(0, str(Path(__file__).parent / "bot"))

    # Now import main function
    from main import main as bot_main
    return bot_main()

if __name__ == "__main__":
    asyncio.run(main())