Skip to content

Instantly share code, notes, and snippets.

@BNPrashanth
Created November 23, 2019 07:53
Show Gist options
  • Save BNPrashanth/a1c5986c1ef46e552d0394ff2019db3f to your computer and use it in GitHub Desktop.
Save BNPrashanth/a1c5986c1ef46e552d0394ff2019db3f to your computer and use it in GitHub Desktop.
/*
HandleMain Function renders the index page when the application index route is called
*/
func HandleMain(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.WriteHeader(http.StatusOK)
w.Write([]byte(pages.IndexPage))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment