5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 12:32:30 +00:00
matterbridge/vendor/github.com/monaco-io/request/resp.go

19 lines
376 B
Go
Raw Normal View History

package request
// StatusCode get response status code
func (s *SugaredResp) StatusCode() (code int) {
return s.resp.StatusCode
}
// Status get response status code and text, like 200 ok
func (s *SugaredResp) Status() (status string) {
return s.resp.Status
}
// Close close response body
func (s *SugaredResp) Close() {
if s.resp != nil {
_ = s.resp.Body.Close()
}
}