seaweedfs/go/weed/version.go
Stuart P. Bentley 1a194a578c More consistency with SeaweedFS name
Among the changes, this replaces a couple instances of "Seaweed File System"
with "SeaweedFS", for the same reason that nobody says "Mongo Data Base".
2015-04-16 21:11:25 +00:00

25 lines
439 B
Go

package main
import (
"fmt"
"runtime"
"github.com/chrislusf/seaweedfs/go/util"
)
var cmdVersion = &Command{
Run: runVersion,
UsageLine: "version",
Short: "print SeaweedFS version",
Long: `Version prints the SeaweedFS version`,
}
func runVersion(cmd *Command, args []string) bool {
if len(args) != 0 {
cmd.Usage()
}
fmt.Printf("version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
return true
}