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