seaweedfs/weed/util/constants.go

15 lines
168 B
Go
Raw Normal View History

package util
2019-04-09 13:32:42 +08:00
import (
"fmt"
)
var (
2021-01-10 14:55:22 +08:00
VERSION = fmt.Sprintf("%s %d.%02d", sizeLimit, 2, 20)
2020-06-06 06:27:10 +08:00
COMMIT = ""
)
2020-06-02 15:10:35 +08:00
func Version() string {
return VERSION + " " + COMMIT
2020-06-06 06:27:10 +08:00
}