summaryrefslogtreecommitdiff
path: root/lib/chessh/web/web.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chessh/web/web.ex')
-rw-r--r--lib/chessh/web/web.ex6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/chessh/web/web.ex b/lib/chessh/web/web.ex
index d5e2be5..af70ebb 100644
--- a/lib/chessh/web/web.ex
+++ b/lib/chessh/web/web.ex
@@ -392,6 +392,12 @@ defmodule Chessh.Web.Endpoint do
)
end
+ get "/health" do
+ conn
+ |> put_resp_content_type("text/plain")
+ |> send_resp(200, "healthy")
+ end
+
match _ do
send_resp(conn, 404, "Route undefined")
end