(writer http.ResponseWriter, body string)
| 1079 | } |
| 1080 | |
| 1081 | func writeJSON(writer http.ResponseWriter, body string) { |
| 1082 | writer.Header().Set("Content-Type", "application/json") |
| 1083 | _, _ = writer.Write([]byte(body)) |
| 1084 | } |
| 1085 | |
| 1086 | const serverURLPlaceholder = "SERVER_URL" |
| 1087 |
no test coverage detected