gitee.com/quant1x/gox@v1.21.2/http/response.go (about)

     1  package http
     2  
     3  import "time"
     4  
     5  type Response struct {
     6  	StatusCode    int
     7  	ContentLength int
     8  	LastModified  time.Time
     9  	Body          []byte
    10  }