hyperledger / fabric-admin-sdk

Fabric SDK for Admin Capability services
Apache License 2.0
31 stars 19 forks source link

Avoid use of deprecated ioutil package in Go implementation #47

Closed bestbeforetoday closed 1 year ago

bestbeforetoday commented 1 year ago

The ioutil package in the Go standard libraries has been deprecated since Go 1.16. Alternatives to all the functions provided by that package are present in the io and os packages. The Go implementation should use the io and os packages, and avoid using the ioutil package.