mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
12 lines
208 B
Go
12 lines
208 B
Go
package store
|
|
|
|
// MinVersion returns the minimum compatible store version.
|
|
func MinVersion() int {
|
|
return 2
|
|
}
|
|
|
|
// MaxVersion returns the maximum compatible store version.
|
|
func MaxVersion() int {
|
|
return 2
|
|
}
|