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

12 lines
263 B
Go

package notifications
import (
"context"
"github.com/tech/sendico/pkg/model"
)
type ConfirmationRequestHandler = func(context.Context, *model.ConfirmationRequest) error
type ConfirmationResultHandler = func(context.Context, *model.ConfirmationResult) error