Last analyzed 8e9cac1 10 days ago
Default analysis branch is
Currently analyzing run
Using a deprecated function, variable, constant or field GO-W1009
Anti-pattern
4 months ago5 months old
"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.
 9
10import (
11	"fmt"
12	"io/ioutil"13	"os"
14	"unsafe"
15)