This commit is contained in:
2025-12-31 22:01:35 +08:00
commit 2cba589b2e
13 changed files with 465 additions and 0 deletions

10
main.py Normal file
View File

@@ -0,0 +1,10 @@
# main.py
import asyncio
from core import WS
async def main():
bot = WS()
await bot.connect()
if __name__ == "__main__":
asyncio.run(main())