22 lines
442 B
Go
22 lines
442 B
Go
package verification
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/tech/sendico/pkg/model"
|
|
"go.mongodb.org/mongo-driver/v2/bson"
|
|
)
|
|
|
|
type DB interface {
|
|
// template.DB[*model.VerificationToken]
|
|
Create(
|
|
ctx context.Context,
|
|
accountRef bson.ObjectID,
|
|
purpose model.VerificationPurpose,
|
|
target string,
|
|
ttl time.Duration,
|
|
) (rawToken string, err error)
|
|
Consume(ctx context.Context, rawToken string) (*model.VerificationToken, error)
|
|
}
|