berrypod/lib/berrypod_web/controllers/health_controller.ex
jamey 9528700862 rename project from SimpleshopTheme to Berrypod
All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 21:23:15 +00:00

8 lines
145 B
Elixir

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