mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
102 B
Python
8 lines
102 B
Python
|
|
def main():
|
|
try:
|
|
process()
|
|
except Exception as ex:
|
|
print(ex)
|
|
exit(1)
|