(journalIDChannel chan string, id string)
| 122 | } |
| 123 | |
| 124 | func sendJournalIDToPostServeAction(journalIDChannel chan string, id string) { |
| 125 | if journalIDChannel != nil { |
| 126 | journalIDChannel <- id |
| 127 | close(journalIDChannel) |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | // Creates goproxy.ProxyHttpServer and configures it to be used as a webserver for Hoverfly |
| 132 | // goproxy is given a non proxy handler that uses the Hoverfly request processing |
no outgoing calls
no test coverage detected