package api import ( "fmt" "net/http" ) func serveTestUI(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/html; charset=utf-8") fmt.Fprint(w, testUIHTML) } const testUIHTML = `