aboutsummaryrefslogtreecommitdiff
path: root/weed/version.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2013-02-10 03:25:35 -0800
committerChris Lu <chris.lu@gmail.com>2013-02-10 03:25:35 -0800
commitab6fb13ad795763ba7fc7c91696d2890be6da543 (patch)
tree3d956452bdcef7ea4b50457faff07df06f8d4346 /weed/version.go
parent1b6f53cdac9a44370f67276ede138f5cde8806c2 (diff)
downloadseaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.tar.xz
seaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.zip
avoid the "src" folder
Diffstat (limited to 'weed/version.go')
-rw-r--r--weed/version.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/weed/version.go b/weed/version.go
new file mode 100644
index 000000000..b418126a4
--- /dev/null
+++ b/weed/version.go
@@ -0,0 +1,26 @@
+package main
+
+import (
+ "fmt"
+ "runtime"
+)
+
+const (
+ VERSION = "0.28 beta"
+)
+
+var cmdVersion = &Command{
+ Run: runVersion,
+ UsageLine: "version",
+ Short: "print Weed File System version",
+ Long: `Version prints the Weed File System version`,
+}
+
+func runVersion(cmd *Command, args []string) bool {
+ if len(args) != 0 {
+ cmd.Usage()
+ }
+
+ fmt.Printf("version %s %s %s\n", VERSION, runtime.GOOS, runtime.GOARCH)
+ return true
+}