Files
nostrlib/binary/limits.go

11 lines
173 B
Go

package binary
import "math"
const (
MaxContentSize = math.MaxUint16
MaxKind = math.MaxUint16
MaxTagCount = math.MaxUint16
MaxTagSize = math.MaxUint16
)