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

11 lines
184 B
Go
Raw Normal View History

package user
const (
2021-03-20 15:44:56 +00:00
FetchMaxLimit = 100
MinDisplayNameLength = 2
MaxDisplayNameLength = 32
MinPasswordLength = 6
MaxPasswordLength = 64
MaxOrders = 3
)