This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
backend/internal/user/constants.go
2021-03-20 16:44:56 +01:00

10 lines
158 B
Go

package user
const (
FetchMaxLimit = 100
MinDisplayNameLength = 2
MaxDisplayNameLength = 32
MinPasswordLength = 6
MaxPasswordLength = 64
)