()
| 23 | |
| 24 | |
| 25 | async def async_call(): |
| 26 | client = WebClient( |
| 27 | token=os.environ["SLACK_API_TOKEN"], |
| 28 | proxy="http://localhost:9000", |
| 29 | run_async=True, |
| 30 | ) |
| 31 | response = await client.auth_test() |
| 32 | logger.info(f"async response: {response}") |
| 33 | |
| 34 | |
| 35 | asyncio.run(async_call()) |
no test coverage detected