(trigger *whisk.Trigger)
| 394 | } |
| 395 | |
| 396 | func printTriggerSummary(trigger *whisk.Trigger) { |
| 397 | printEntitySummary(fmt.Sprintf("%7s", "trigger"), |
| 398 | getFullName(trigger.Namespace, "", trigger.Name), |
| 399 | getValueString(trigger.Annotations, "description"), |
| 400 | strings.Join(getParamUnion(trigger.Annotations, trigger.Parameters, "name"), ", ")) |
| 401 | } |
| 402 | |
| 403 | func printRuleSummary(rule *whisk.Rule) { |
| 404 | fmt.Fprintf(color.Output, "%s %s\n", boldString(fmt.Sprintf("%4s", "rule")), |
no test coverage detected