Current section
Files
Jump to
Current section
Files
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, configs), to: StripePost.Worker
end