aboutsummaryrefslogtreecommitdiffstats
path: root/idatui/__main__.py
blob: 0090aceb7611f1e7f462dfbd7b04c88da5fd94bb (plain) (blame)
1
2
3
4
5
6
"""``python -m idatui`` -> the one-shot launcher (open a binary in the TUI)."""
import sys

from .launch import main

raise SystemExit(main(sys.argv[1:]))