mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
feat: enhance index page with additional settings buttons and style adjustments
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user