forked from hyperledger/fabric-private-chaincode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.go
27 lines (25 loc) · 1.32 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
// Package fpcclientsdk enables Go developers to build solutions that interact with FPC chaincode for Hyperledger Fabric.
// The FPC Client SDK builds on top of the Fabric Client SDK Go (https://godoc.org/github.com/hyperledger/fabric-sdk-go)
// and provides FPC specific functionality such as enclave initialization and secure interaction with a FPC chaincode.
// The main goal is to ease the interaction with a FPC chaincode and provide similar experience as offered by normal
// chaincode interaction.
//
// Packages for end developer usage
//
// pkg/client/resmgmt: Provides resource management capabilities such as installing FPC chaincode.
// Reference: https://godoc.org/github.com/hyperledger-labs/fabric-private-chaincode/client_sdk/go/pkg/client/resmgmt
//
// pkg/gateway: Enables Go developers to build client applications using the Hyperledger
// Fabric programming model.
// Reference: https://godoc.org/github.com/hyperledger-labs/fabric-private-chaincode/client_sdk/go/pkg/gateway
//
// Usage samples
//
// samples/main.go: Illustrates the use of the FPC Client SDK. The application can be used with our test-network.
// Reference: https://github.com/hyperledger-labs/fabric-private-chaincode/tree/main/integration/test-network
//
package fpcclientsdk