package main import ( "fmt" "log" "net/http" "os" "github.com/gorilla/mux" ) const HTML = `
This application is running as a container on AWS App Runner and was built using Cloud Native Buildpacks!
` func main() { router := mux.NewRouter() router.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { fmt.Fprintln(w, HTML) }) log.Fatal(http.ListenAndServe(":"+os.Getenv("PORT"), router)) }