(action *whisk.Action)
| 386 | } |
| 387 | |
| 388 | func printActionSummary(action *whisk.Action) { |
| 389 | paramUnion := getParamUnion(action.Annotations, action.Parameters, "name") |
| 390 | printEntitySummary(fmt.Sprintf("%6s", "action"), |
| 391 | getFullName(action.Namespace, "", action.Name), |
| 392 | getValueString(action.Annotations, "description"), |
| 393 | strings.Join(paramUnion, ", ")) |
| 394 | } |
| 395 | |
| 396 | func printTriggerSummary(trigger *whisk.Trigger) { |
| 397 | printEntitySummary(fmt.Sprintf("%7s", "trigger"), |
no test coverage detected