11 lines
283 B
Python
11 lines
283 B
Python
import asyncio
|
|
from app.services.event_sync_service import run_sync, run_sync_event
|
|
|
|
'''
|
|
手动同步事件
|
|
'''
|
|
|
|
if __name__ == "__main__":
|
|
print("启动事件同步服务...")
|
|
asyncio.run(run_sync())
|
|
# asyncio.run(run_sync_event("ac0278e8384e4025b202871df9c1a1d8")) |