Files
sendico/api/pkg/messaging/notifications/paymentgateway/handler/interface.go
2026-01-04 12:57:40 +01:00

12 lines
275 B
Go

package notifications
import (
"context"
"github.com/tech/sendico/pkg/model"
)
type PaymentGatewayIntentHandler = func(context.Context, *model.PaymentGatewayIntent) error
type PaymentGatewayExecutionHandler = func(context.Context, *model.PaymentGatewayExecution) error