forked from goodboy/tractor
1
0
Fork 0
tractor/examples/debugging/root_actor_error.py

10 lines
116 B
Python

import tractor
async def main():
assert 0
if __name__ == '__main__':
tractor.run(main, debug_mode=True)