10 lines
196 B
Go
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
|