mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
20 lines
351 B
Go
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
|
||
|
|
}
|