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

import (
	"fmt"
)

var (
	VERSION = fmt.Sprintf("%s %d.%02d", sizeLimit, 2, 07)
	COMMIT  = ""
)

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