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

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