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 = ` Wrenn Sandbox — Test Console

Wrenn Sandbox Test Console not authenticated

Authentication

API Keys

Create Sandbox

Create Snapshot

Snapshots / Templates

Execute Command

Activity Log

Sandboxes

`