seaweedfs/weed/util/constants.go

14 lines
164 B
Go
Raw Normal View History

package util
2019-04-09 13:32:42 +08:00
import (
"fmt"
)
var (
2020-05-19 23:21:51 +08:00
VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 79)
2020-06-02 15:10:35 +08:00
COMMIT = ""
)
2020-06-02 15:10:35 +08:00
func Version() string {
return VERSION + " " + COMMIT
}