PingPlug
A simple Elixir plug to echo message
Installation
If available in Hex, the package can be installed as:
Add ping_plug to your list of dependencies in mix.exs:
def deps do
[{:ping_plug, "~> 0.1.0"}]
endUsage
Mount PingPlug module to your desire route.
e.g. route.ex
get "/ping", PingPlug, []only 2 options are available right now,
- :message is the response that will be echoed back. The default is "pong".
- :content_type is HTTP Header Content type. The default is "text/plain".
e.g.
get "/ping", PingPlug, [message: Mix.env]