# shellcheck shell=dash

xrc:mod:lib     openspec   __runcmd __install

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

    local op="$1";      shift
    case "$op" in
        -h|--help)      ___x_cmd help -m openspec "$@";    return 0 ;;
        --|--runmain)   ___x_cmd_openspec___runmain            "$@" ;;

        *)              ___x_cmd_openspec___runmain "$op"      "$@" ;;
    esac
}
