created: utils package

This commit is contained in:
nquidox 2025-07-06 22:21:32 +03:00
parent f4c4065812
commit 5ffb6dde46
4 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package interfaces
import "github.com/gin-gonic/gin"
type Utils interface {
IsEmail(email string) bool
GetUserUuidFromContext(c *gin.Context) (string, error)
}