aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: 23fd5c9206cc1b50c311d273dec54201930d026e (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.%d", sizeLimit, 1, 82)
	COMMIT  = ""
)

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