gocolly / colly

Elegant Scraper and Crawler Framework for Golang
https://go-colly.org/
Apache License 2.0
23.39k stars 1.77k forks source link

Replaced deprecated io/ioutil package with proper implementations of … #785

Closed zachary-walters closed 1 year ago

zachary-walters commented 1 year ago

…io/os packages.

As of Go v1.16, the io/ioutil package has been deprecated and replaced with io and os implementations. https://go.dev/doc/go1.16#ioutil

WGH- commented 1 year ago

I don't think these deprecated aliases will go away any time before Go 2 (so never), but it's a good idea to clean up the code from time to time nevertheless. Thanks!