Current section

Files

Jump to
ankh lib ankh.ex
Raw

lib/ankh.ex

defmodule Ankh do
@moduledoc """
Elixir HTTP implementation
Ankh is a low level client and server HTTP implementation for Elixir. It includes primitives
allowing to build higher level clients and servers and implement different HTTP versions.
Experimental HTTP/1 and HTTP/2 implementations are included, along with protocols enabling
relatively easy implementation of additional HTTP and transport variations.
"""
use Application
@doc false
def start(_type, _args), do: Ankh.Supervisor.start_link()
end