# shellcheck shell=dash disable=SC2120

xrc:mod:lib     set     xready  var

___x_cmd_set___main(){
    local op="$1"; [ "$#" -eq 0 ] || shift
    case "$op" in
        xready)         ___x_cmd_set_"$op" "$@" ;;
        var)            ___x_cmd_set_var "$@" ;;
        --help|-h)      ___x_cmd_set_help ;;
        *)              ___x_cmd_set_help; return 1 ;;
    esac
}

___x_cmd_set_help(){
    x help -m set "$@"
}
