Files
sendico/api/pkg/messaging/notifications/confirmation/handler/interface.go
2026-02-10 01:55:33 +01:00

10 lines
196 B
Go

package handler
import (
"context"
"github.com/tech/sendico/pkg/model"
)
type ConfirmationCodeHandler = func(context.Context, *model.Account, string, model.VerificationPurpose, string) error