mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
10 lines
124 B
Go
10 lines
124 B
Go
package runtime
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
ErrMissedParam = errors.New("missed value for parameter(s)")
|
|
)
|