(response http.ResponseWriter, r *http.Request)
| 11 | } |
| 12 | |
| 13 | func homePage(response http.ResponseWriter, r *http.Request) { |
| 14 | fmt.Printf("Welcome to the Go Web API!") |
| 15 | fmt.Println("Endpoint Hit: homePage") |
| 16 | } |
| 17 | |
| 18 | func aboutMe(response http.ResponseWriter, r *http.Request) { |
| 19 | who := "MichaelLevan" |
nothing calls this directly
no outgoing calls
no test coverage detected