Files
revng-revng/python/scripts/revng-model-to-json
2022-04-20 09:57:08 +02:00

16 lines
326 B
Python
Executable File

#!/usr/bin/env python3
#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
# pylint: disable=no-name-in-module,import-error
import sys
from revng.cli.model_dump.__main__ import main
if __name__ == "__main__":
try:
sys.exit(main())
except KeyboardInterrupt:
sys.exit(1)