# shellcheck shell=dash

xrc:mod:lib     gx          share migrate/index ws/_index

___x_cmd_gx___main(){
    [ "$#" -gt 0 ] || {

        return
    }

    local op="$1"; shift
    case "$op" in
        migrate) ___x_cmd_gx_migrate "$@";;
        ws) ___x_cmd_gx_ws "$@";;
        *) return 1
    esac
}

___x_cmd_gx_help(){
    x help -m gx "$@"  >&2
    return 1
}
