From 8e2c2dbe1802b7630af93758d63f0af9f839e363 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Mon, 9 Jan 2017 18:31:33 -0800 Subject: [PATCH] backend: /health handler for backplane --- backend/christine.website/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/christine.website/main.go b/backend/christine.website/main.go index d4063a4..faad4a2 100644 --- a/backend/christine.website/main.go +++ b/backend/christine.website/main.go @@ -102,6 +102,7 @@ func init() { } func main() { + http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {}) http.HandleFunc("/api/blog/posts", writeBlogPosts) http.HandleFunc("/api/blog/post", func(w http.ResponseWriter, r *http.Request) { q := r.URL.Query()