removed unneeded method

This commit is contained in:
nquidox 2025-09-10 23:09:38 +03:00
parent a3151ed0b5
commit 0dc93fcd16
2 changed files with 0 additions and 41 deletions

View file

@ -5,7 +5,6 @@ import "github.com/gin-gonic/gin"
type Utils interface {
IsEmail(email string) bool
GetUserUuidFromContext(c *gin.Context) (string, error)
GetAllTokensFromContext(c *gin.Context) (string, string, error)
HashPassword(password string) (string, error)
ComparePasswords(hashedPassword string, plainPassword string) error
}