6 lines
165 B
Python
6 lines
165 B
Python
import asyncio
|
|
from app.services.event_sync_service import run_sync
|
|
|
|
if __name__ == "__main__":
|
|
print("启动事件同步服务...")
|
|
asyncio.run(run_sync()) |