diff options
-rwxr-xr-x | control.py | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -211,12 +211,18 @@ if __name__ == "__main__": try: startTGBot() startHCBot() - while not should_quit: - cmd = input("> ") - if not cmd in COMMANDS_CLI: - print("Unknown command!") - else: - COMMANDS_CLI[cmd]() + + print("started bots") + print("bridging ...") + while True: + pass + + # while not should_quit: + # cmd = input("> ") + # if not cmd in COMMANDS_CLI: + # print("Unknown command!") + # else: + # COMMANDS_CLI[cmd]() except (KeyboardInterrupt, EOFError) as e: print("Interrupt received. Shutting down...") |