Source code for raider.parsers.shell
import argparse
from raider import Raider
[docs]def add_shell_parser(parser) -> None:
shell_parser = parser.add_parser(
"shell", help="Run commands in an interactive shell"
)
shell_parser.add_argument("project", help="Project name")