Router
A small service that parses the whole request body, it is meant to run the whole request against a set of rules and determine where to redirect the request body.
Installation
If available in Hex, the package can be installed as:
-
Add
url_parserto your list of dependencies inmix.exs:
```elixir
def deps do
[{:url_parser, "~> 0.1.0"}]
end
```-
Ensure
url_parseris started before your application:
```elixir
def application do
[applications: [:url_parser]]
end
```