Skip to content

Instantly share code, notes, and snippets.

@lyqscmy
Created January 18, 2019 03:33
Show Gist options
  • Save lyqscmy/5db1157b15aa831d5e0770be1e93f85c to your computer and use it in GitHub Desktop.
Save lyqscmy/5db1157b15aa831d5e0770be1e93f85c to your computer and use it in GitHub Desktop.
http server
package main
import (
"io"
"log"
"net/http"
)
func main() {
// Hello world, the web server
helloHandler := func(w http.ResponseWriter, req *http.Request) {
io.WriteString(w, "Hello, world!\n")
}
http.HandleFunc("/hello", helloHandler)
log.Fatal(http.ListenAndServe(":8080", nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment