Skip to content

Instantly share code, notes, and snippets.

@nhoclove
Created December 15, 2019 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhoclove/49fae70537dfe20a901d538e3e2aba09 to your computer and use it in GitHub Desktop.
Save nhoclove/49fae70537dfe20a901d538e3e2aba09 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "hello world\n")
})
http.ListenAndServe(":8089", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment