Current section
Files
Jump to
Current section
Files
lib/base_payment/base_behaviour.ex
defmodule BasePayment.BaseBehaviour do
@moduledoc """
Base behaviour for payment gateways.
"""
@callback config() :: {:ok, %BasePayment.BaseConfig{}} | {:error, String.t()}
end