1 Star 0 Fork 0

peter / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
version.go 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package version
import (
"fmt"
"runtime"
"github.com/hyperledger/fabric/common/metadata"
"github.com/spf13/cobra"
)
// Program name
const ProgramName = "peer"
// Cmd returns the Cobra Command for Version
func Cmd() *cobra.Command {
return cobraCommand
}
var cobraCommand = &cobra.Command{
Use: "version",
Short: "Print fabric peer version.",
Long: `Print current version of the fabric peer server.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Print(GetInfo())
},
}
// GetInfo returns version information for the peer
func GetInfo() string {
if metadata.Version == "" {
metadata.Version = "development build"
}
ccinfo := fmt.Sprintf(" Base Image Version: %s\n"+
" Base Docker Namespace: %s\n"+
" Base Docker Label: %s\n"+
" Docker Namespace: %s\n",
metadata.BaseVersion, metadata.BaseDockerNamespace,
metadata.BaseDockerLabel, metadata.DockerNamespace)
return fmt.Sprintf("%s:\n Version: %s\n Go version: %s\n OS/Arch: %s\n"+
" Experimental features: %s\n Chaincode:\n %s\n",
ProgramName, metadata.Version, runtime.Version(),
fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
metadata.Experimental, ccinfo)
}
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.1.0-preview

搜索帮助