cerrado @ 3739c9e14b0c65a59a520dbfefa459e43af3bf20

 1package ext
 2
 3import (
 4	"io"
 5	"net/http"
 6)
 7
 8type Request struct {
 9	*http.Request
10}
11
12func (r *Request) ReadBody() io.ReadCloser {
13	return r.Body
14}