Current section

Files

Jump to
stripe_post lib stripe_post.ex
Raw

lib/stripe_post.ex

defmodule StripePost do
@moduledoc """
A minimal library for posting messages to the Stripe API.
"""
defdelegate post(url, body, headers), to: StripePost.Worker
defdelegate charge(body), to: StripePost.Worker
defdelegate charge(body, configs), to: StripePost.Worker
end