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

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