mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
12 lines
195 B
Python
Executable File
12 lines
195 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
from revng.cli.model_dump.__main__ import main
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
sys.exit(main())
|
|
except KeyboardInterrupt:
|
|
sys.exit(1)
|