Packages

A library that helps you easily interact with the ProxyPay API using the elixir programming language

Current section

Files

Jump to
ex_proxypay lib config.ex
Raw

lib/config.ex

defmodule Config do
defstruct [:api_key, :environment]
def init(%{api_key: api_key, environment: environment}) do
%__MODULE__{api_key: api_key, environment: environment}
end
end