1import os 2import sys 3from modules.menu import * 4 5if __name__=="__main__": 6 try: 7 main.menu() 8 except KeyboardInterrupt: 9 os.system("clear") 10 logo.exit() 11 12