Current section
Files
Jump to
Current section
Files
priv/templates/structure/health_check.ex
defmodule {app}.EntryPoint.HealthCheck do
def checks do
[
%PlugCheckup.Check{name: "http", module: __MODULE__, function: :check_http}
]
end
def check_http do
:ok
end
end