forked from hyperledger-labs/fabric-token-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.go
28 lines (24 loc) · 1.03 KB
/
tools.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
28
//go:build tools
// +build tools
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package tools
import (
_ "github.com/IBM/idemix/bccsp"
_ "github.com/IBM/idemix/bccsp/keystore"
_ "github.com/IBM/idemix/bccsp/schemes"
_ "github.com/IBM/idemix/bccsp/schemes/dlog/crypto/translator/amcl"
_ "github.com/hyperledger-labs/fabric-smart-client/integration/nwo/fsc/tracing"
_ "github.com/hyperledger-labs/fabric-smart-client/platform/fabric/services/weaver/relay/fabric"
_ "github.com/hyperledger-labs/fabric-smart-client/platform/view/services/comm"
_ "github.com/hyperledger/fabric/cmd/idemixgen"
_ "github.com/hyperledger/fabric/common/ledger/util/leveldbhelper"
_ "github.com/hyperledger/fabric/common/metrics/prometheus"
_ "github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/statecouchdb"
_ "github.com/hyperledger/fabric/core/ledger/pvtdatastorage"
_ "github.com/hyperledger/fabric/core/operations"
_ "github.com/libp2p/go-libp2p-core/network"
_ "github.com/maxbrunsfeld/counterfeiter/v6"
)