1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-04 02:20:15 +02:00
seaweedfs/weed/util/constants.go
2023-05-21 23:43:39 -07:00

16 lines
216 B
Go

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