Open YuanBLQ opened 8 months ago
All of ioutil functions was deprecated in Go versions 1.16 and 1.17. Functions were moved to package io and others were moved to package os.
ioutil
io
os
Summary of changes:
ioutil.ReadFile
os.ReadFile
ioutil.ReadAll
io.ReadAll
All of
ioutil
functions was deprecated in Go versions 1.16 and 1.17. Functions were moved to packageio
and others were moved to packageos
.Summary of changes:
ioutil.ReadFile
->os.ReadFile
ioutil.ReadAll
->io.ReadAll