2021-02-24 18:39:14 +00:00
|
|
|
import trio
|
2020-10-03 23:35:18 +00:00
|
|
|
import tractor
|
|
|
|
|
|
|
|
|
|
|
2026-07-02 16:32:49 +00:00
|
|
|
async def main() -> None:
|
2021-02-24 18:39:14 +00:00
|
|
|
async with tractor.open_root_actor(
|
|
|
|
|
debug_mode=True,
|
|
|
|
|
):
|
|
|
|
|
assert 0
|
2020-10-03 23:35:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-02-24 18:39:14 +00:00
|
|
|
trio.run(main)
|