Passed
Pull Request — master (#40)
by Stefano
03:01
created

scan.*userAgentDoerDecorator.Do   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
package scan
2
3
import "net/http"
4
5
type Doer interface {
0 ignored issues
show
introduced by
exported type Doer should have comment or be unexported
Loading history...
6
	Do(*http.Request) (*http.Response, error)
7
}
8