You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
161 B

12 years ago
12 years ago
  1. package storage
  2. type Version uint8
  3. const (
  4. Version1 = Version(1)
  5. Version2 = Version(2)
  6. Version3 = Version(3)
  7. CurrentVersion = Version3
  8. )