structio/tests/no_tasks.py

11 lines
134 B
Python

import structio
async def main():
async with structio.create_pool():
pass
print("[main] Done")
structio.run(main)