View Source ex_castor_edc

Package Documentation CI

An Elixir wrapper for the Castor EDC API.

Not all endpoints have been implemented yet, these will be gradually added in future releases.

getting-started

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.1.0"}
  ]
end

Alternatively, inside a script or Livebook:

Mix.install([
  {:ex_castor_edc, "~> 0.1.0"}
])