64 Star 187 Fork 3

Gitee 极速下载/hyperledger-fabric

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
Clone or Download
main.go 404 Bytes
Copy Edit Raw Blame History
Matthew Sykes authored 2019-08-30 03:56 +08:00 . Move to hyperledger/fabric-protos-go
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package main
import (
"fmt"
"os"
"github.com/hyperledger/fabric-chaincode-go/shim"
"github.com/hyperledger/fabric/integration/chaincode/marbles"
)
func main() {
err := shim.Start(&marbles.SimpleChaincode{})
if err != nil {
fmt.Fprintf(os.Stderr, "Exiting marbles.SimpleChaincode: %s", err)
os.Exit(2)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v2.1.1

Search