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.

9 lines
132 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. CurrentVersion = Version2
  7. )