#!/usr/bin/env bash
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
source "$PLUGIN_CORE_AVAILABLE_PATH/proxy/functions"
source "$PLUGIN_AVAILABLE_PATH/config/functions"

proxy_ports_cmd() {
  declare desc="cmd wrapper to list proxy port mappings for an app"
  local cmd="proxy:ports"
  local APP="$2"; verify_app_name "$APP"

  list_app_proxy_ports "$APP"
}

proxy_ports_cmd "$@"
