In Nebo #15 we have our own API design manifest, and we trying to follow it.
This package extracts all common patterns and utilities, to remove boilerplate from business-logic services.
The package can be installed as:
- Add
eview
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:eview, "~> 0.12.1"}]
end
```
- Ensure
eview
is started before your application:
```elixir
def application do
[applications: [:eview]]
end
```
The docs can be found at https://hexdocs.pm/eview.