mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
16 lines
216 B
Go
16 lines
216 B
Go
package util
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
VERSION_NUMBER = fmt.Sprintf("%.02f", 3.19)
|
|
VERSION = sizeLimit + " " + VERSION_NUMBER
|
|
COMMIT = ""
|
|
)
|
|
|
|
func Version() string {
|
|
return VERSION + " " + COMMIT
|
|
}
|