func main()

in tutorials/profiles-gke/web-profiles/leeroy-app-profiles/app.go [28:32]


func main() {
	log.Printf("leeroy app server ready, running in target: %s", os.Getenv("TARGET"))
	http.HandleFunc("/", handler)
	http.ListenAndServe(":50051", nil)
}