Created
December 15, 2019 07:05
-
-
Save nhoclove/49fae70537dfe20a901d538e3e2aba09 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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