9 lines
149 B
Go
9 lines
149 B
Go
|
package extractors
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var ErrURLParseFailed = errors.New("url parse failed")
|
||
|
var ErrLoginRequired = errors.New("login required")
|