From d8671aa47dd0472b9779918a7a9cdddf9bfde355 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 6 Mar 2026 16:31:54 -0500 Subject: doc: architecture and authentication --- cmd/webshopd/main.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 cmd/webshopd/main.go (limited to 'cmd/webshopd') diff --git a/cmd/webshopd/main.go b/cmd/webshopd/main.go deleted file mode 100644 index 519a299..0000000 --- a/cmd/webshopd/main.go +++ /dev/null @@ -1,15 +0,0 @@ -package main - -import ( - "fmt" - "html" - "log" - "net/http" -) - -func main() { - http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path)) - }) - log.Fatal(http.ListenAndServe(":8081", nil)) -} -- cgit v1.2.3