12 lines
155 B
Python
12 lines
155 B
Python
|
import tractor
|
||
|
|
||
|
|
||
|
async def main():
|
||
|
|
||
|
while True:
|
||
|
await tractor.breakpoint()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
tractor.run(main, debug_mode=True)
|