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

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