Current section

Files

Jump to
elixir_structure_manager priv templates structure health_check.ex
Raw

priv/templates/structure/health_check.ex

defmodule {app}.Infrastructure.EntryPoint.HealthCheck do
@moduledoc """
{app} health check
"""
def checks do
[
%PlugCheckup.Check{name: "http", module: __MODULE__, function: :check_http}
]
end
def check_http do
:ok
end
end