mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
777adcbd45
Now, `scripts/revng` uses the model and we no longer need to emit .li.csv and .need.csv.
9 lines
128 B
Python
Executable File
9 lines
128 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
from revng_dump_model.__main__ import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|