seaweedfs/weed/util/constants.go

15 lines
168 B
Go
Raw Normal View History

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