ExCastorEDC
An unofficial Elixir wrapper for the Castor EDC API.
Not all endpoints have been implemented yet, these will be gradually added in future releases.
Getting started
In order to use ex_castor_edc, you will need Elixir installed. Then create an
Elixir project via the mix build tool:
$ mix new my_app
Then you can add ex_castor_edc as dependency in your mix.exs.
def deps do
[
{:ex_castor_edc, "~> 0.2.0"}
]
endAlternatively, inside a script or Livebook:
Mix.install([
{:ex_castor_edc, "~> 0.2.0"}
])