GoAdminGroup / go-admin

Deprecated io/ioutil package usage GO-C4001
Anti-pattern
Minor
1 occurrence in this check
ioutil.ReadAll is deprecated, use io.ReadAll instead
 202		_ = res.Body.Close()
 203	}()
 204
 205	body, err := ioutil.ReadAll(res.Body) 206
 207	if err != nil {
 208		return []map[string]interface{}{}, 0