# shellcheck shell=dash

xrc:mod:lib     ourl        util arg one parse pbar stream writeout

___x_cmd_ourl___main(){
    [ "$#" -gt 0 ] ||   set - --help

    local op="$1"; shift
    case "$op" in
        -h|--help)              x help -m ourl ;;
        get|post|put|del|patch|raw|parse|stream|pbar)
                                ___x_cmd_ourl_"$op"     "$@" ;;
        *)                      ___x_cmd_ourl_get "$op" "$@" ;;
    esac
}

