/ex_castor_edc

An unofficial Elixir wrapper for the Castor EDC API

Primary LanguageElixirMIT LicenseMIT

ExCastorEDC

Package Documentation CI

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

Alternatively, inside a script or Livebook:

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