Closed hatamiarash7 closed 1 month ago
The http backend does not work because of the nil value of the HTTP header.
http
nil
I think you intended to add the headers section to the config file in the future. Until then, we cannot use a nil value. Instead, we can put an empty http.Header{}.
http.Header{}
The
http
backend does not work because of thenil
value of the HTTP header.I think you intended to add the headers section to the config file in the future. Until then, we cannot use a
nil
value. Instead, we can put an emptyhttp.Header{}
.