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

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