Sign in
go
/
go
/
9ac0fff70ab50acdb5a83a4682b76e4db16de6e5
/
.
/
doc
/
articles
/
wiki
/
http-sample.go
blob: ac8cc4f2d6739848fd2babaa50dbfb31c151a863 [
file
] [
log
] [
blame
]
package main
import (
"fmt"
"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)
http.ListenAndServe(":8080", nil)
}