From 58ec0591f05200a2f1a0adce095878b2682da8c9 Mon Sep 17 00:00:00 2001 From: highperfocused Date: Sat, 27 Dec 2025 22:09:00 +0100 Subject: [PATCH] update welcome message in HTTP handler to encourage using a nostr client --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index dbf123a..1ae5d11 100644 --- a/main.go +++ b/main.go @@ -73,7 +73,7 @@ func main() { // set up other http handlers mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Header().Set("content-type", "text/html") - fmt.Fprintf(w, `welcome to my relay!`) + fmt.Fprintf(w, `Please use a nostr client!`) }) // start the server