reportmonster-client/src/reportmonster_client/test.py
2022-07-19 11:39:39 +02:00

9 lines
198 B
Python

from reportmonster_client import ReportMonsterClient
import asyncio
async def test():
client = ReportMonsterClient("test", "test")
return await client.connect()
print(asyncio.run(test()))