Files
revng-revng/scripts/revng-dump-model
Alessandro Di Federico 777adcbd45 model::Binary: add segments and imported libraries
Now, `scripts/revng` uses the model and we no longer need to emit
.li.csv and .need.csv.
2021-12-22 17:47:54 +01:00

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())