Packages
PlugCheckup provides a Plug for adding simple health checks to your app.
Retired package: Release invalid - This version doesn't contain any functionality, it was made just as a learning step
Current section
Files
Jump to
Current section
Files
lib/plug_checkup.ex
defmodule PlugCheckup do
@moduledoc """
Documentation for PlugCheckup.
"""
@doc """
Hello world.
## Examples
iex> PlugCheckup.hello
:world
"""
def hello do
:world
end
end