()
| 17 | print(f">>> {greeting}") |
| 18 | |
| 19 | async def main(): |
| 20 | socket_path = os.path.join(os.path.dirname(__file__), "socket") |
| 21 | async with unix_serve(hello, socket_path): |
| 22 | await asyncio.get_running_loop().create_future() # run forever |
| 23 | |
| 24 | asyncio.run(main()) |
no test coverage detected
searching dependent graphs…