Current section
Files
Jump to
Current section
Files
lib/plds_web/controllers/health_controller.ex
defmodule PLDSWeb.HealthController do
use PLDSWeb, :controller
@moduledoc false
def index(conn, _) do
version = Application.spec(:plds, :vsn) |> List.to_string()
json(conn, %{
"application" => "plds",
"version" => version
})
end
end