Files
Ganesh Saraswat 96bc4d9865 project
2023-06-03 20:23:10 -06:00

16 lines
241 B
Python

#pipe server
from body import BodyThread
import time
import struct
import global_vars
from sys import exit
thread = BodyThread()
thread.start()
i = input()
print("Exiting…")
global_vars.KILL_THREADS = True
time.sleep(0.5)
exit()