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

import (
	"fmt"
)

var (
	VERSION = fmt.Sprintf("%s %.02f", sizeLimit, 2.62)
	COMMIT  = ""
)

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