Ace.HTTP
HTTP Server built on top of Ace TCP connection manager
Installation
If available in Hex, the package can be installed as:
-
Add
ace_httpto your list of dependencies inmix.exs:
```elixir
def deps do
[{:ace_http, "~> 0.1.2"}]
end
```-
Ensure
ace_httpis started before your application:
```elixir
def application do
[applications: [:ace_http]]
end
```