13 lines
349 B
Go
13 lines
349 B
Go
package store
|
|
|
|
// List pagination and validation constants
|
|
const (
|
|
// MaxListLimit is the maximum number of items that can be requested per page
|
|
MaxListLimit = 1000
|
|
|
|
// DefaultListLimit is the default number of items per page when not specified
|
|
DefaultListLimit = 50
|
|
|
|
// MinListLimit is the minimum number of items per page
|
|
MinListLimit = 1
|
|
)
|