From 83ad5524015e155e6250743e01eeed7234ccb5a5 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 12 Jan 2024 04:14:09 -0600 Subject: initial commit Signed-off-by: Jeff Carr --- repoHTML.go | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 repoHTML.go (limited to 'repoHTML.go') diff --git a/repoHTML.go b/repoHTML.go new file mode 100644 index 0000000..f30fcca --- /dev/null +++ b/repoHTML.go @@ -0,0 +1,48 @@ +package main + +import ( + "fmt" + // "log" + "net/http" +) + + +/* + + + + + + + + + Nothing to see here. Please move along. + + +*/ + +func doGui(w http.ResponseWriter, path string) { + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + // fmt.Fprintln(w, + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + fmt.Fprintln(w, "Nothing to see here. Please move along.\"") + fmt.Fprintln(w, "") + fmt.Fprintln(w, "") + + /* + var tmp string + tmp = r.URL.String() + if tmp == "/gui" { + findFile(w) + return + } + fmt.Fprintln(w, "OK") + */ +} -- cgit v1.2.3