#!/usr/bin/env python3
"""NeuroSploit v3.3.0 launcher — `./neurosploit` or `./neurosploit run <url>`."""
import os
import sys

sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

from neurosploit_agent.cli import main  # noqa: E402

if __name__ == "__main__":
    sys.exit(main())
