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