14 lines
198 B
Go

package collections
// Collection item states
const (
ItemNotFound = 0
ItemFound = 1
)
// String length limits
const (
MaxCollectionNameLength = 512
MaxCollectionCategoryLength = 512
)