Use http.NoBody instead of nil in http.NewRequest calls GO-R4001
Anti-pattern
Major
a month agoa year old
http.NoBody should be preferred to the nil request body
79		return ""
80	}
81
82	req, err := http.NewRequest(http.MethodGet, addr, nil)83	if err != nil {
84		return ""
85	}