(annotations whisk.KeyValueArr)
| 823 | } |
| 824 | |
| 825 | func deleteWebAnnotationKeys(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 826 | annotations = deleteKey(WEB_EXPORT_ANNOT, annotations) |
| 827 | annotations = deleteKey(RAW_HTTP_ANNOT, annotations) |
| 828 | annotations = deleteKey(FINAL_ANNOT, annotations) |
| 829 | |
| 830 | return annotations |
| 831 | } |
| 832 | |
| 833 | func getWebActionAnnotations(action *whisk.Action) whisk.KeyValueArr { |
| 834 | var webKvArr = make(whisk.KeyValueArr, 3, 3) |
no test coverage detected