Files
sonr/internal/gateway/session/checks.go
T

20 lines
351 B
Go

package session
import "github.com/labstack/echo/v4"
func IsUniqueHandle(c echo.Context, handle string) bool {
return true
}
func IsValidFirstName(c echo.Context, firstName string) bool {
return true
}
func IsValidLastInitial(c echo.Context, lastInitial string) bool {
return true
}
func IsHuman(c echo.Context, sum int) bool {
return true
}