mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-31 11:42:30 +00:00
9 lines
91 B
Go
9 lines
91 B
Go
package bolt
|
|
|
|
const Version = 1
|
|
|
|
const (
|
|
MaxKeySize = 0x8000
|
|
MaxDataSize = 0xffffffff
|
|
)
|