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.

11 lines
143 B

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