aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: 95370746b0cc466ac16705aa83744ca444b136f0 (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, 17)
	COMMIT  = ""
)

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