command_factory.go 208 B

1234567891011
  1. package store
  2. // MinVersion returns the minimum compatible store version.
  3. func MinVersion() int {
  4. return 2
  5. }
  6. // MaxVersion returns the maximum compatible store version.
  7. func MaxVersion() int {
  8. return 2
  9. }