aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: f174ffe365c57e1cc2098b7066132c1a1af581e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package util

import (
	"fmt"
)

var (
	VERSION_NUMBER = fmt.Sprintf("%.02f", 2.78)
	VERSION        = sizeLimit + " " + VERSION_NUMBER
	COMMIT         = ""
)

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