mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-04 09:43:13 +08:00
8 lines
110 B
Go
8 lines
110 B
Go
|
|
package httpclientpool
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrRebuildURL = errors.New("could not rebuild request URL")
|
||
|
|
)
|