fix(main): use asyncio.run for proper async execution (BUG-3)

This commit is contained in:
Benju1
2025-12-05 03:10:48 +01:00
parent 3fbfdb9b18
commit 00d62bc450

View File

@@ -10,6 +10,7 @@ if src_dir not in sys.path:
sys.path.insert(0, src_dir)
from dolibarr_mcp.dolibarr_mcp_server import main
import asyncio
if __name__ == "__main__":
main()
asyncio.run(main())