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>
12 lines
452 B
Modula-2
12 lines
452 B
Modula-2
module github.com/hyperledger/fabric-samples/high-throughput/application-go
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-sdk-go v1.0.0-rc1
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
|
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
|
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
)
|