Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created November 29, 2019 02:25
Show Gist options
  • Save manakuro/1dbd94f1a6df22c1bcfa833961febcc4 to your computer and use it in GitHub Desktop.
Save manakuro/1dbd94f1a6df22c1bcfa833961febcc4 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! This is my first deploy!")
})
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment