aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: b9367007fae029f4ece95e1d9e69ae77f3a5cea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package util

import (
	"fmt"
)

var (
	VERSION_NUMBER = fmt.Sprintf("%.02f", 2.91)
	VERSION        = sizeLimit + " " + VERSION_NUMBER
	COMMIT         = ""
)

func Version() string {
	return VERSION + " " + COMMIT
}