| 123456789101112 |
- package repository
- import (
- "github.com/porter-dev/porter/internal/models"
- )
- // PWResetTokenRepository represents the set of queries on the PWResetToken model
- type PWResetTokenRepository interface {
- CreatePWResetToken(pwToken *models.PWResetToken) (*models.PWResetToken, error)
- ReadPWResetToken(id uint) (*models.PWResetToken, error)
- UpdatePWResetToken(pwToken *models.PWResetToken) (*models.PWResetToken, error)
- }
|