(w http.ResponseWriter, r *http.Request)
| 7 | ) |
| 8 | |
| 9 | func handler(w http.ResponseWriter, r *http.Request) { |
| 10 | fmt.Println(r.URL.RawQuery) |
| 11 | fmt.Fprintf(w, ` |
| 12 | ## . |
| 13 | ## ## ## == |
| 14 | ## ## ## ## ## === |
| 15 | /"""""""""""""""""\___/ === |
| 16 | { / ===- |
| 17 | \______ O __/ |
| 18 | \ \ __/ |
| 19 | \____\_______/ |
| 20 | |
| 21 | |
| 22 | Hello from Docker! |
| 23 | |
| 24 | `) |
| 25 | } |
| 26 | |
| 27 | func main() { |
| 28 | http.HandleFunc("/", handler) |
nothing calls this directly
no outgoing calls
no test coverage detected