From 1e38435a12bf3866324447368df75a1ecf087791 Mon Sep 17 00:00:00 2001 From: Miles Smith Date: Sun, 31 Dec 2023 20:06:17 -0500 Subject: [PATCH] fix: add more verbose output on startup --- cmd/sol-shotty/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sol-shotty/main.go b/cmd/sol-shotty/main.go index 06994ca..60a88f1 100644 --- a/cmd/sol-shotty/main.go +++ b/cmd/sol-shotty/main.go @@ -55,6 +55,6 @@ func proxy(w http.ResponseWriter, req *http.Request) { func main() { fmt.Printf("Loading the shotty...\n") http.HandleFunc("/", proxy) - + fmt.Printf("Shotty is ready to fire! Listening at http://127.0.0.1:420\n") http.ListenAndServe(":420", nil) }