(annotations whisk.KeyValueArr)
| 796 | } |
| 797 | |
| 798 | func addWebAnnotations(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 799 | annotations = deleteWebAnnotationKeys(annotations) |
| 800 | annotations = addKeyValue(WEB_EXPORT_ANNOT, true, annotations) |
| 801 | annotations = addKeyValue(RAW_HTTP_ANNOT, false, annotations) |
| 802 | annotations = addKeyValue(FINAL_ANNOT, true, annotations) |
| 803 | |
| 804 | return annotations |
| 805 | } |
| 806 | |
| 807 | func deleteWebAnnotations(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 808 | annotations = deleteWebAnnotationKeys(annotations) |
nothing calls this directly
no test coverage detected