All modules, configs, paths, and references updated. 836 tests pass, zero warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
145 B
Elixir
8 lines
145 B
Elixir
defmodule BerrypodWeb.HealthController do
|
|
use BerrypodWeb, :controller
|
|
|
|
def show(conn, _params) do
|
|
json(conn, %{status: "ok"})
|
|
end
|
|
end
|