mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Also install goimports globally to run the linting check rather than installing to each gomodule, which was causing dependency conflicts. Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
11 lines
381 B
Modula-2
11 lines
381 B
Modula-2
module github.com/hyperledger/fabric-samples/asset-transfer-basic/chaincode-go
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200424173110-d7076418f212
|
|
github.com/hyperledger/fabric-contract-api-go v1.1.0
|
|
github.com/hyperledger/fabric-protos-go v0.0.0-20200424173316-dd554ba3746e
|
|
github.com/stretchr/testify v1.5.1
|
|
)
|