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

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