(response http.ResponseWriter, r *http.Request)
| 16 | } |
| 17 | |
| 18 | func aboutMe(response http.ResponseWriter, r *http.Request) { |
| 19 | who := "MichaelLevan" |
| 20 | |
| 21 | fmt.Fprintf(response, "A little bit about Michael Levan...") |
| 22 | fmt.Println("Endpoint Hit: ", who) |
| 23 | } |
| 24 | |
| 25 | func request1() { |
| 26 | http.HandleFunc("/", homePage) |
nothing calls this directly
no outgoing calls
no test coverage detected