mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
9 lines
153 B
Go
9 lines
153 B
Go
|
package drivers
|
||
|
|
||
|
import "github.com/pkg/errors"
|
||
|
|
||
|
var (
|
||
|
ErrDetached = errors.New("element detached")
|
||
|
ErrNotFound = errors.New("element(s) not found")
|
||
|
)
|