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

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