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
the ioutil functions need to be changed to io packages
"io/ioutil" has been deprecated since Go 1.16: 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. (SA1019)
The text was updated successfully, but these errors were encountered:
Yeah, nice idea.
But if we switch to new functionality, we must update our min dependence of Go from 1.14 to 1.16.
I'm gonna add this issue to the TODO list and do this later.
the
ioutil
functions need to be changed toio
packages"io/ioutil" has been deprecated since Go 1.16: 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. (SA1019)
The text was updated successfully, but these errors were encountered: