# shellcheck shell=dash

___x_cmd log init arp
xrc:mod:lib     arp     ls/_index

___x_cmd_arp___main(){
    [ "$#" -gt 0 ] ||   set -- ls

    local op="$1"; shift
    case "$op" in
        -h|--help)      ___x_cmd help -m arp    "$@" ;;
        ls)             ___x_cmd_arp_ls         "$@" ;;
        *)              ___x_cmd_arp_ls "$op"   "$@" ;;
                        # N=arp M="subcmd not found -> $op" "$@" log:ret:64 ;;
    esac
}
