package main import ( "fmt" "html" "net/http" "github.com/google/uuid" ) func (this *Application) GET_Root(w http.ResponseWriter, r *http.Request) { w.Header().Set(`Content-Type`, `text/html;charset=UTF-8`) w.WriteHeader(200) w.Write([]byte(` ` + html.EscapeString(AppTitle) + ` `)) }