mirror of
https://github.com/github/codeql.git
synced 2026-01-11 05:30:24 +01:00
9 lines
117 B
Python
9 lines
117 B
Python
import sys
|
|
|
|
def main():
|
|
try:
|
|
process()
|
|
except Exception as ex:
|
|
print(ex)
|
|
sys.exit(1)
|