From b98b576509953f58acd02e56e9f0af2ee19d7b85 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Thu, 7 Aug 2025 20:31:17 -0400 Subject: Respond to subscribe with empty object --- internal/api/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal') diff --git a/internal/api/handlers.go b/internal/api/handlers.go index 506b83c..aba73a2 100644 --- a/internal/api/handlers.go +++ b/internal/api/handlers.go @@ -253,7 +253,7 @@ func StatusUptimeHandler(w http.ResponseWriter, r *http.Request) { // TODO: SUBSCRIBE TO EMAILS func StatusSubscribeHandler(w http.ResponseWriter, r *http.Request) { - + fmt.Fprintf(w, "{}") } // TODO: CONTACT HANDLER -- cgit