Validation library in Elixir inspired by dry-validation.
This is a WIP and the name of the library may change.
If available in Hex, the package can be installed as:
- Add
validation
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:validation, "~> 0.1.0"}]
end
```
- Ensure
validation
is started before your application:
```elixir
def application do
[applications: [:validation]]
end
```
Usage goes here...