1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2025-07-24 20:42:47 +02:00
seaweedfs/weed/util/constants.go
2022-02-20 22:00:13 -08:00

15 lines
216 B
Go

package util
import (
"fmt"
)
var (
VERSION_NUMBER = fmt.Sprintf("%.02f", 2.90)
VERSION = sizeLimit + " " + VERSION_NUMBER
COMMIT = ""
)
func Version() string {
return VERSION + " " + COMMIT
}