forked from goodboy/tractor
1
0
Fork 0
tractor/examples/debugging/root_actor_breakpoint_forev...

12 lines
155 B
Python

import tractor
async def main():
while True:
await tractor.breakpoint()
if __name__ == '__main__':
tractor.run(main, debug_mode=True)