14 lines
390 B
Go
14 lines
390 B
Go
package paymentapiimp
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/tech/sendico/pkg/model"
|
|
"github.com/tech/sendico/server/interface/api/sresponse"
|
|
)
|
|
|
|
// initiateImmediate runs a one-shot payment using a fresh quote.
|
|
func (a *PaymentAPI) initiateImmediate(r *http.Request, account *model.Account, token *sresponse.TokenData) http.HandlerFunc {
|
|
return a.initiatePayment(r, account, token, false)
|
|
}
|