#!python
"""rfox — unified rfcat helper. Run with no args for an interactive menu."""
import sys
from rflib.rfox import main

if __name__ == "__main__":
    raise SystemExit(main())
