Golang r.URL.Path tutorial#2

Golang r.URL.Path tutorial#2

 


package main
import (
    "fmt"
    "net/http"
)
func main() {
    http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        fmt.Fprintf(w, "r.URL.Path.... %s", r.URL.Path)
    })
    http.ListenAndServe(":8080", nil)
}

Tony BB
 

TonyBB is a Coach , marketer, hypnotist and a founder of RSKVF Production who specializes in providing simple, affordable, and easy to use solutions for Life.

Click Here to Leave a Comment Below 0 comments

Leave a Reply: