mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
9 lines
146 B
Go
9 lines
146 B
Go
package caql
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrStack = errors.New("unexpected operator stack")
|
|
ErrUndefined = errors.New("variable not defined")
|
|
)
|