Retort
JSONAPI over JSONRPC over RabbitMQ.
Supplies the RabbitMQ connection pool, Retort.Connection;
RPC servers, Retort.Server.*; and RPC clients, Retort.Client.*.
Installation
If available in Hex, the package can be installed as:
-
Add
retortto your list of dependencies inmix.exs:
```elixir
def deps do
[
{:retort, "~> 2.2"}
]
end
```-
Ensure
retortis started before your application:
```elixir
def application do
[applications: [:retort]]
end
```