healthckeck improvements
All checks were successful
CI/CD Pipeline / build (push) Successful in 31s

This commit is contained in:
2026-03-09 15:20:50 -06:00
parent 08f5aedb58
commit 76c4098a19
5 changed files with 22 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
defmodule ElixirAiWeb.HealthController do
use ElixirAiWeb, :controller
def index(conn, _params) do
json(conn, %{status: "ok"})
end
end