for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package scan
import "net/http"
type Doer interface {
Do(*http.Request) (*http.Response, error)
}