mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
fdd07f640a
Remove code for the `revng` command line entrypoint that was needed before python became an orchestra component.
12 lines
200 B
Python
Executable File
12 lines
200 B
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
import sys
|
|
|
|
from revng.cli.revng import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|