mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
71a5b72aff
Signed-off-by: Gary Kim <gary@garykim.dev>
19 lines
376 B
Go
19 lines
376 B
Go
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()
|
|
}
|
|
}
|