优化代码

This commit is contained in:
2026-01-29 15:10:58 +00:00
parent 0e9c7dfe85
commit 0bd4df686c
4 changed files with 17 additions and 6 deletions

View File

@@ -4,8 +4,8 @@ import asyncio
from comsumer import bn_agg_trade, order
async def main():
a1 = bn_agg_trade.main()
a2 = order.start()
res = asyncio.gather(a1, a2)
# a2 = order.start()
res = asyncio.gather(a1)
await res
if __name__ == "__main__":