14 lines
287 B
Python
14 lines
287 B
Python
import os
|
|
import sys
|
|
|
|
# Add the project root directory to Python path
|
|
project_root = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.append(project_root)
|
|
|
|
# Import and run the main function
|
|
from src.main import main
|
|
import asyncio
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|