mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-06-29 16:22:46 +02:00
13 lines
170 B
Go
13 lines
170 B
Go
package needle
|
|
|
|
type Version uint8
|
|
|
|
const (
|
|
Version1 = Version(1)
|
|
Version2 = Version(2)
|
|
Version3 = Version(3)
|
|
)
|
|
|
|
func GetCurrentVersion() Version {
|
|
return Version3
|
|
}
|