Files
Willi Ballenthin 877d8da73c mapa: add --output=html-map
Polish MAPA html split view
2026-03-16 19:54:45 +01:00

21 lines
363 B
Python

#!/usr/bin/env python
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "idapro",
# "ida-domain",
# "rich",
# ]
# ///
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from mapa.cli import main
if __name__ == "__main__":
sys.exit(main())