HTTPStatus
Every HTTP response status for Elixir applications
Documentation available on hex.pm
Installation
If available in Hex, the package can be installed as:
-
Add
http_statusto your list of dependencies inmix.exs:
```elixir
def deps do
[{:http_status, "~> 0.2.0"}]
end
```-
Ensure
http_statusis started before your application:
```elixir
def application do
[applications: [:http_status]]
end
```