in commands/util.go [309:323]
func printSummary(collection interface{}) {
switch collection := collection.(type) {
case *whisk.Action:
printActionSummary(collection)
case *whisk.Trigger:
printTriggerSummary(collection)
case *whisk.Package:
printPackageSummary(collection)
case *whisk.Rule:
case *whisk.Namespace:
case *whisk.Activation:
}
}