Packages
ex_proxypay
0.1.0
A library that helps you easily interact with the ProxyPay API using the elixir programming language
Current section
Files
Jump to
Current section
Files
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