Sign in
go
/
go
/
f205ae3305d2b60076ee294113984595bae7c4da
/
.
/
doc
/
articles
/
wiki
/
http-sample.go
blob: 9bc2084c67211b8d2d3fe263e1793e915d60f571 [
file
] [
log
] [
blame
]
package main
import (
"fmt"
"log"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
log.Fatal(http.ListenAndServe(":8080", nil))
}