# -----!/usr/bin/python3.7#################################################################### Copyright (c) 2016 by TAOS Technologies, Inc.# All rights reserved.## This file is proprietary and confidential to TAOS Technologies.# No part of this file may be reproduced, stored, transmitted,# disclosed or used in any form or by any means other than as# expressly provided by the written permission from Jianhui Tao####################################################################importsysfromcrash_gen.crash_genimportMainExecif__name__=="__main__":mExec=MainExec()mExec.init()exitCode=mExec.run()print("Exiting with code: {}".format(exitCode))sys.exit(exitCode)