# shellcheck shell=dash disable=SC2154,SC2034

xrc:mod:lib     shodan \
                alert/trigger/ls alert/trigger/enable alert/trigger/disable \
                alert/trigger/add alert/trigger/rm

___x_cmd_shodan_alert_trigger(){
    local X_help_cmd='x help -m shodan alert trigger';  help:arg:parse
    local op="$1";  shift
    case "$op" in
        ls|ll|enable|\
        disable|add|rm)
                        ___x_cmd_shodan_alert_trigger_"$op"            "$@" ;;
    esac
}

