mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-19 21:28:32 +02:00
8 lines
100 B
Go
8 lines
100 B
Go
|
package base
|
||
|
|
||
|
import "github.com/pkg/errors"
|
||
|
|
||
|
var (
|
||
|
ErrAssertion = errors.New("assertion error")
|
||
|
)
|