summaryrefslogtreecommitdiffstats
path: root/cmd/webshopd/main.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-03-06 16:31:54 -0500
committerSam Anthony <sam@samanthony.xyz>2026-03-06 16:31:54 -0500
commitd8671aa47dd0472b9779918a7a9cdddf9bfde355 (patch)
tree8f3a202b23fa8e50191ac299fff67453cea7d17c /cmd/webshopd/main.go
parent0dda0350dec5e82be8e5a7767c7f0a56c0d48c94 (diff)
downloadbuth-d8671aa47dd0472b9779918a7a9cdddf9bfde355.zip
doc: architecture and authentication
Diffstat (limited to 'cmd/webshopd/main.go')
-rw-r--r--cmd/webshopd/main.go15
1 files changed, 0 insertions, 15 deletions
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))
-}