fabric-samples/asset-transfer-basic/rest-api-go/go.mod
Mark S. Lewis d4903b51a8
Update Go error handling for v1.10 client API
The Fabric Gateway client API v1.10.0 provides simplified access to Go
error details. This change updates sample client application to use this
latest version of the client API, and updates Go client applications to
reflect the error handling changes.

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
2025-11-04 22:06:03 +00:00

18 lines
499 B
Modula-2

module rest-api-go
go 1.24.0
require (
github.com/hyperledger/fabric-gateway v1.10.0
google.golang.org/grpc v1.76.0
)
require (
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.7 // indirect
github.com/miekg/pkcs11 v1.1.1 // indirect
golang.org/x/net v0.42.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/text v0.28.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
google.golang.org/protobuf v1.36.10 // indirect
)