Add uvloop support for improved asyncio performance and update requirements

This commit is contained in:
Nawaz Haider
2026-01-01 22:07:40 +06:00
parent 5e3505207b
commit b4bd479b2f
2 changed files with 11 additions and 1 deletions
+6 -1
View File
@@ -110,7 +110,12 @@ async def main():
if __name__ == "__main__":
try:
asyncio.run(main())
try:
import uvloop
uvloop.run(main())
except ImportError:
asyncio.run(main())
except KeyboardInterrupt:
print("\nMarket maker stopped by user")
except Exception as e: