reportmonster-client/test.py

9 lines
184 B
Python
Raw Normal View History

2022-07-19 09:25:29 +00:00
from client import ReportMonsterClient
import asyncio
async def test():
client = ReportMonsterClient("test", "test")
return await client.connect()
print(asyncio.run(test()))