mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
11 lines
226 B
Elixir
11 lines
226 B
Elixir
defmodule API.HealthController do
|
|
use API, :controller
|
|
|
|
def healthz(conn, _params) do
|
|
conn
|
|
|> put_resp_content_type("application/json")
|
|
|> send_resp(200, Jason.encode!(%{status: "ok"}))
|
|
|> halt()
|
|
end
|
|
end
|