Skip to content

Instantly share code, notes, and snippets.

@manakuro
Last active November 29, 2019 02:23
Show Gist options
  • Save manakuro/91d6e83cc31be2697658afb6b11fdf64 to your computer and use it in GitHub Desktop.
Save manakuro/91d6e83cc31be2697658afb6b11fdf64 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello Go App!")
})
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment