aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: 1d4a0d88a296174816e3bbbb257c935aa4178bc5 (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", 3.41)
	VERSION        = sizeLimit + " " + VERSION_NUMBER
	COMMIT         = ""
)

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