rbmd/rbmd/version.go
2017-09-04 13:40:30 +03:00

14 lines
186 B
Go

package rbmd
import (
"fmt"
"os"
"runtime"
)
//VersionShow show version and exit
func VersionShow() {
fmt.Println("RBMD 0.2 test", runtime.Version(), runtime.GOARCH)
os.Exit(1)
}