# shellcheck shell=bash
xrc:mod:lib     shodan      trend/facet trend/filter trend/search

___x_cmd_shodan_trend(){
    [ $# -gt 0 ] ||     set -- -h

    local op="$1";      shift
    case "$op" in
        -h|--help)      x help -m shodan trend ;;
        search)         ___x_cmd_shodan_trend_search            "$@" ;;
        --)             ___x_cmd_shodan_trend_search___main     "$@" ;;
        *)              ___x_cmd_shodan_trend_search "$op"      "$@" ;;
    esac
}
