Packages

Elixir client for interacting with Stripe's API

Current section

Files

Jump to
tiger lib config.ex
Raw

lib/config.ex

defmodule Tiger.Config do
@moduledoc """
Struct for storing API keys
"""
defstruct [:api_key]
@type t :: %__MODULE__{
api_key: String.t()
}
end