mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-06-03 23:00:37 +08:00
11 lines
146 B
Python
11 lines
146 B
Python
import asyncio
|
|
from processor import process
|
|
|
|
|
|
async def main() -> None:
|
|
await process()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|