Skip to content

Instantly share code, notes, and snippets.

@mumoshu
Created September 9, 2018 03:58
Show Gist options
  • Save mumoshu/9e4376268a249867a3b350b3bdc24586 to your computer and use it in GitHub Desktop.
Save mumoshu/9e4376268a249867a3b350b3bdc24586 to your computer and use it in GitHub Desktop.
httpserver in go for demo purpose
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)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment