mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-12 16:49:03 +08:00
18 lines
249 B
Go
18 lines
249 B
Go
package util
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const HttpStatusCancelled = 499
|
|
|
|
var (
|
|
VERSION_NUMBER = fmt.Sprintf("%.02f", 3.68)
|
|
VERSION = sizeLimit + " " + VERSION_NUMBER
|
|
COMMIT = ""
|
|
)
|
|
|
|
func Version() string {
|
|
return VERSION + " " + COMMIT
|
|
}
|