1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-06 17:17:25 +02:00
seaweedfs/weed/util/constants.go
2021-09-26 17:37:46 -07:00

16 lines
216 B
Go

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