You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: As of Go 1.16, the same functionality is now provided by package io or package os,
and those implementations should be preferred in new code.
See the specific function documentation for details.
Describe the solution you'd like
Replace ioutil.Discard with io.Discard.
Replace ioutil.ReadFile, ioutil.WriteFile, ioutil.ReadDir with os.ReadFile, os.WriteFile, os.ReadDir.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Package io/ioutil deprecated since Go 1.16:
Describe the solution you'd like
ioutil.Discard
withio.Discard
.ioutil.ReadFile, ioutil.WriteFile, ioutil.ReadDir
withos.ReadFile, os.WriteFile, os.ReadDir
.The text was updated successfully, but these errors were encountered: