summaryrefslogtreecommitdiff
path: root/wally/version.go
blob: 1d16558ad5bb3f6cb32f4fd49d8c3b8a57fa7b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package wally

import "runtime"

// GetAppVersion returns the current version number.
func GetAppVersion() string {
	switch runtime.GOOS {
	case "darwin":
		return "2.0.0"
	case "linux":
		return "2.0.0"
	case "windows":
		return "2.0.0"
	default:
		return "2.0.0"
	}
}