mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 00:01:14 +00:00
9 lines
124 B
Go
9 lines
124 B
Go
package validate
|
|
|
|
func RoleName(name string) bool {
|
|
if len(name) < 3 || len(name) > 100 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|