mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 21:15:29 +00:00
8 lines
110 B
Go
8 lines
110 B
Go
|
|
package httpclientpool
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrRebuildURL = errors.New("could not rebuild request URL")
|
||
|
|
)
|