request is the request from the browser
(writer http.ResponseWriter, request *http.Request)
| 34 | |
| 35 | // request is the request from the browser |
| 36 | func englishHandler(writer http.ResponseWriter, |
| 37 | request *http.Request) { |
| 38 | write(writer, "Hello Internet") |
| 39 | } |
| 40 | |
| 41 | func spanishHandler(writer http.ResponseWriter, |
| 42 | request *http.Request) { |