(Golang)You've Been Calling It a Handler Wrong All Along
When routing in go, we attach a normal function to a router and call it a handler, for example :
package main
func home(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello from Snippe
areeshzafar.hashnode.dev2 min read