I have been in DevOps related jobs for past 6 years dealing mainly with Kubernetes in AWS and on-premise as well. I spent quite a lot …
:date_long | 1 min Read
Go NotFoundHandler()
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
http.HandleFunc("/", index)
http.Handle("/favicon.ico", http.NotFoundHandler())
http.ListenAndServe(":8080", nil)
}
func index(w http.ResponseWriter, r *http.Request) {
fmt.Printf("requested url: %v\n", r.URL)
io.WriteString(w, "Hello from Go dude!")
}