berrypod/lib/berrypod_web/controllers/health_controller.ex

8 lines
145 B
Elixir
Raw Permalink Normal View History

defmodule BerrypodWeb.HealthController do
use BerrypodWeb, :controller
def show(conn, _params) do
json(conn, %{status: "ok"})
end
end