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