diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-08-07 20:31:17 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-08-07 20:31:27 -0400 |
commit | b98b576509953f58acd02e56e9f0af2ee19d7b85 (patch) | |
tree | c1ab8f762918282679a89588deac81f43ae88116 | |
parent | 8264480b6556a5f9023b3bb339bbb319861c9d3b (diff) |
Respond to subscribe with empty object
-rw-r--r-- | internal/api/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |